From: barate Date: Fri, 13 Apr 2012 15:39:43 +0000 (+0000) Subject: Properly handle WAITING state X-Git-Tag: V1_5_0rc1~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=f6f6ead7386daa439c6ec2156d91e04a2eefce14;p=tools%2Flibbatch.git Properly handle WAITING state --- diff --git a/src/Vishnu/Batch_JobInfo_eVishnu.cxx b/src/Vishnu/Batch_JobInfo_eVishnu.cxx index 083c055..d4b89d4 100644 --- a/src/Vishnu/Batch_JobInfo_eVishnu.cxx +++ b/src/Vishnu/Batch_JobInfo_eVishnu.cxx @@ -78,6 +78,8 @@ namespace Batch { _param[STATE] = FINISHED; } else if (status == "QUEUED") { _param[STATE] = QUEUED; + } else if (status == "WAITING") { + _param[STATE] = QUEUED; } else if (status == "RUNNING") { _param[STATE] = RUNNING; } else if (status == "TERMINATED") {