From 9c06cd7e6499ef7aa94adc8ac4e8f902a90f1164 Mon Sep 17 00:00:00 2001 From: Fabian Posch Date: Mon, 29 Jan 2024 11:37:52 -0500 Subject: [PATCH] update to newest cluster lib version and fix typo --- src/actsim_agent/downloader.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/actsim_agent/downloader.cpp b/src/actsim_agent/downloader.cpp index 7338e53..7e8717a 100644 --- a/src/actsim_agent/downloader.cpp +++ b/src/actsim_agent/downloader.cpp @@ -182,8 +182,7 @@ bool Downloader::fetch_tasks(size_t n) { *testcase = { commands, row["top_proc"].as(), - false, - 0 + false }; if (row["id"].is_null()) { @@ -250,7 +249,7 @@ bool Downloader::fetch_tasks(size_t n) { auto task = std::make_unique(id, source_pass, target_artifact, design, source_config); task->add_testcase(testcase); - // see if we already have the desing locally; if not, load it + // see if we already have the design locally; if not, load it if (!this->interface.increment_design(design)) { DEBUG_PRINT("Fetching new design with ID " + db::to_string(design));