From bec684285a5079b1e7a6eb00cbe4579c9ad1ba1a Mon Sep 17 00:00:00 2001 From: Anthony Geay Date: Thu, 23 May 2024 18:03:59 +0200 Subject: [PATCH] WIP --- src/PBS/JobInfo_PBS.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PBS/JobInfo_PBS.cxx b/src/PBS/JobInfo_PBS.cxx index 309e7da..f06753c 100644 --- a/src/PBS/JobInfo_PBS.cxx +++ b/src/PBS/JobInfo_PBS.cxx @@ -64,7 +64,7 @@ namespace Batch { iss >> status; iss >> status; - if (status == "C") { // Completed + if (status == "F") { // Completed _param[STATE] = FINISHED; } else if (status == "E") { // Exiting _param[STATE] = RUNNING; -- 2.39.2