From 9696b658b1141101a5bd3ed7294c19c0ace28bd6 Mon Sep 17 00:00:00 2001 From: Dominik Schreiber Date: Tue, 18 May 2021 10:35:19 +0200 Subject: [PATCH] Correct job name in destruction JSON --- src/mallob_ipasir.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mallob_ipasir.cpp b/src/mallob_ipasir.cpp index e0ee7d6..fdc831e 100644 --- a/src/mallob_ipasir.cpp +++ b/src/mallob_ipasir.cpp @@ -112,7 +112,7 @@ void MallobIpasir::destruct() { {"done", true} }; if (_revision > 0) { - j["precursor"] = getJobName(_revision-1); + j["precursor"] = "ipasir." + getJobName(_revision-1); } std::string jsonFilename = _api_directory + "/new/ipasir." + jobName + ".json"; std::ofstream o(jsonFilename);