aboutsummaryrefslogtreecommitdiff
path: root/mod/ci-common.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'mod/ci-common.cxx')
-rw-r--r--mod/ci-common.cxx9
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);
}
}