From b5a45516a82e36cd7be914cee11aa18791c7ee34 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 11 Mar 2024 18:03:04 +0300 Subject: Adapt to build auxiliary machines related changes in libbbot --- bbot/agent/agent.cxx | 9 ++++++++- bbot/machine-manifest.hxx | 8 +++++++- 2 files changed, 15 insertions(+), 2 deletions(-) (limited to 'bbot') diff --git a/bbot/agent/agent.cxx b/bbot/agent/agent.cxx index 74f461c..8f860a2 100644 --- a/bbot/agent/agent.cxx +++ b/bbot/agent/agent.cxx @@ -2067,6 +2067,7 @@ try imode, ilogin, fingerprint, + nullopt /* auxiliary_ram */, // @@ TMP AUXILIARY machine_header_manifests {}}; // Determine which machines we need to offer for this priority. @@ -2097,7 +2098,13 @@ try tq.machines.emplace_back (m.manifest.machine.id, m.manifest.machine.name, - m.manifest.machine.summary); + m.manifest.machine.summary, + // + // @@ TMP AUXILIARY + // + nullopt /* role */, + nullopt /* ram_minimum */, + nullopt /* ram_maximum */); } // Sanity check: in the priority monitor mode we should only ask for a diff --git a/bbot/machine-manifest.hxx b/bbot/machine-manifest.hxx index 116dc32..5cc45f0 100644 --- a/bbot/machine-manifest.hxx +++ b/bbot/machine-manifest.hxx @@ -49,7 +49,13 @@ namespace bbot strings c) : machine_header_manifest (std::move (i), std::move (n), - std::move (s)), + std::move (s), + // + // @@ TMP AUXILIARY + // + nullopt /* role */, + nullopt /* ram_minimum */, + nullopt /* ram_maximum */), type (t), mac (std::move (m)), options (std::move (o)), -- cgit v1.1