diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-11-18 09:07:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-11-18 09:07:00 +0200 |
commit | b03540a7dc9d47c3c6e095a5dfae848770d5feff (patch) | |
tree | fdccf2343e77d339b7bbb80f792a873b23017538 /mod/ci-common.cxx | |
parent | 188032cde85341606a1d1a17791f043ddbd87381 (diff) |
Return tenant archived indication from ci_start::find()
Diffstat (limited to 'mod/ci-common.cxx')
-rw-r--r-- | mod/ci-common.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/mod/ci-common.cxx b/mod/ci-common.cxx index cc361d2..d750b1b 100644 --- a/mod/ci-common.cxx +++ b/mod/ci-common.cxx @@ -988,7 +988,7 @@ namespace brep return s; } - optional<tenant_service> ci_start:: + optional<pair<tenant_service, bool>> ci_start:: find (odb::core::database& db, const string& type, const string& id) const @@ -1007,10 +1007,9 @@ namespace brep tr.commit (); - optional<tenant_service> r; - if (t != nullptr) - r = move (t->service); + if (t == nullptr) + return nullopt; - return r; + return pair<tenant_service, bool> (move (t->service), t->archived); } } |