update to newest cluster lib version and fix typo

This commit is contained in:
Fabian Posch 2024-01-29 11:37:52 -05:00
parent bfd8a76647
commit 9c06cd7e64

View file

@ -182,8 +182,7 @@ bool Downloader::fetch_tasks(size_t n) {
*testcase = { *testcase = {
commands, commands,
row["top_proc"].as<std::string>(), row["top_proc"].as<std::string>(),
false, false
0
}; };
if (row["id"].is_null()) { if (row["id"].is_null()) {
@ -250,7 +249,7 @@ bool Downloader::fetch_tasks(size_t n) {
auto task = std::make_unique<DBSimConfigArtifact>(id, source_pass, target_artifact, design, source_config); auto task = std::make_unique<DBSimConfigArtifact>(id, source_pass, target_artifact, design, source_config);
task->add_testcase(testcase); 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)) { if (!this->interface.increment_design(design)) {
DEBUG_PRINT("Fetching new design with ID " + db::to_string(design)); DEBUG_PRINT("Fetching new design with ID " + db::to_string(design));