From 9c8dbf97806ed6012f8318ba379e5344089700f2 Mon Sep 17 00:00:00 2001 From: Fabian Posch Date: Tue, 16 Jan 2024 17:18:07 -0500 Subject: [PATCH] fix call for cretion of empty output artifact --- src/actsim_agent/worker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actsim_agent/worker.cpp b/src/actsim_agent/worker.cpp index c3b3fde..9fef017 100644 --- a/src/actsim_agent/worker.cpp +++ b/src/actsim_agent/worker.cpp @@ -120,7 +120,7 @@ std::unique_ptr Worker::perform_task(std::unique_ptr& tas if (task->get_content().size() != 1) { std::cerr << "Error: Simulation configuration in worker thread has more than one testcases to run!" << std::endl; finished = false; - return std::make_unique(); + return std::make_unique(task->id, task->source_pass, task->target_artifact, task->design, task->source_config); } auto testcase = task->get_content().front();