diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-04-24 09:49:23 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-10-15 09:05:28 +0200 |
commit | c16410d19ea96e82a8adb164635411df54a8be53 (patch) | |
tree | 9e0f02f61f30a22669f0e6c304da7c209d982ef4 /mod/mod-build-force.cxx | |
parent | 6f00d92f204599a4231ecad8cc4becebc83f8bcc (diff) |
Revert "Also pass build hints to build_building() and build_built()"
This reverts commit 9aa7ca59da55089e6f00733476356ef90bef25d2.
Diffstat (limited to 'mod/mod-build-force.cxx')
-rw-r--r-- | mod/mod-build-force.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/mod/mod-build-force.cxx b/mod/mod-build-force.cxx index 780bd40..ea921e9 100644 --- a/mod/mod-build-force.cxx +++ b/mod/mod-build-force.cxx @@ -188,7 +188,7 @@ handle (request& rq, response& rs) // const tenant_service_build_queued* tsq (nullptr); optional<pair<tenant_service, shared_ptr<build>>> tss; - tenant_service_base::build_hints bhs; + tenant_service_build_queued::build_queued_hints qhs; // Acquire the database connection for the subsequent transactions. // @@ -269,9 +269,8 @@ handle (request& rq, response& rs) shared_ptr<build_package> p ( build_db_->load<build_package> (b->id.package)); - bhs = - tenant_service_base::build_hints {tpc == 1, - p->configs.size () == 1}; + qhs = tenant_service_build_queued::build_queued_hints { + tpc == 1, p->configs.size () == 1}; // Set the package tenant's queued timestamp. // @@ -312,7 +311,7 @@ handle (request& rq, response& rs) if (auto f = tsq->build_queued (ss, qbs, build_state::building, - bhs, + qhs, log_writer_)) { conn = build_db_->connection (); |