From 9da884ce7fa03896064f32e74e3fef663de65e2b Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Fri, 19 Apr 2013 09:00:29 +0000 Subject: [PATCH] =?UTF-8?q?correction=20d'un=20probl=C3=A8me=20qui=20faisa?= =?UTF-8?q?it=20que=20clustercontroller=20ainsi=20que=20la=20page=20web=20?= =?UTF-8?q?clusterstatus=20plantait=20losque'une=20machine=20=C3=A9tait=20?= =?UTF-8?q?r=C3=A9affect=C3=A9e=20=C3=A0=20une=20autre=20queue=20(et=20don?= =?UTF-8?q?c=20qu'une=20queuemachine=20=C3=A9tait=20marqu=C3=A9e=20comme?= =?UTF-8?q?=20obsol=C3=A8te)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ClusterController/QstatParser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ClusterController/QstatParser.py b/ClusterController/QstatParser.py index b95c623..c45b9db 100644 --- a/ClusterController/QstatParser.py +++ b/ClusterController/QstatParser.py @@ -40,6 +40,8 @@ class QstatParser: queueMachineState += QueueMachineStateFlags.UNKNOWN elif c == 'E': queueMachineState += QueueMachineStateFlags.ERROR + elif c == 'o': + queueMachineState += QueueMachineStateFlags.OBSOLETE else: assert False, 'unhandled queue machine state flag :"' + c + '"' return queueMachineState