From f845f18af3d3c18cbfb09ebfecac81bdb3c91953 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 18 Nov 2024 09:07:00 +0200 Subject: Return tenant archived indication from ci_start::find() --- mod/ci-common.cxx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'mod/ci-common.cxx') diff --git a/mod/ci-common.cxx b/mod/ci-common.cxx index cc361d2..4b9f9f9 100644 --- a/mod/ci-common.cxx +++ b/mod/ci-common.cxx @@ -988,7 +988,7 @@ namespace brep return s; } - optional ci_start:: + optional> ci_start:: find (odb::core::database& db, const string& type, const string& id) const @@ -1007,10 +1007,9 @@ namespace brep tr.commit (); - optional r; - if (t != nullptr) - r = move (t->service); + if (t == nullptr || !t->service) + return nullopt; - return r; + return pair (move (*t->service), t->archived); } } -- cgit v1.1