From 57f6378aea619ceb07b935012772bd4698e6a2be Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 17 May 2024 17:27:44 +0300 Subject: Add support for build_unloaded() notification for tenant-associated services --- libbrep/build-package.hxx | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'libbrep/build-package.hxx') diff --git a/libbrep/build-package.hxx b/libbrep/build-package.hxx index 9a9c277..2611678 100644 --- a/libbrep/build-package.hxx +++ b/libbrep/build-package.hxx @@ -32,12 +32,23 @@ namespace brep class build_tenant { public: + // Create tenant for an unloaded CI request (see the build_unloaded() + // tenant services notification for details). + // + build_tenant (string i, tenant_service s, timestamp l) + : id (move (i)), + creation_timestamp (timestamp::clock::now ()), + service (move (s)), + loaded_timestamp (l) {} + string id; - bool private_; + bool private_ = false; optional interactive; - bool archived; + timestamp creation_timestamp; + bool archived = false; optional service; + optional loaded_timestamp; optional queued_timestamp; optional toolchain; -- cgit v1.1