From 468d984409e02e84d15eb35d3eb464f6a3059dd8 Mon Sep 17 00:00:00 2001 From: fsaintma Date: Thu, 11 Jun 2015 09:24:10 +0200 Subject: [PATCH] fix ASAP jobs with state != Waiting,Running --- sfa/iotlab/iotlabshell.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sfa/iotlab/iotlabshell.py b/sfa/iotlab/iotlabshell.py index becdbf50..c51a7d64 100644 --- a/sfa/iotlab/iotlabshell.py +++ b/sfa/iotlab/iotlabshell.py @@ -109,7 +109,7 @@ class IotLABShell(object): def get_reserved_nodes(self): """ - Get all OAR jobs with state Waiting or Running. + Get all OAR jobs not terminated. :Example: {"total":"1907", @@ -128,7 +128,9 @@ class IotLABShell(object): """ logger.warning("iotlashell get_reserved_nodes") reserved_nodes_dict = {} - request = 'admin/experiments?state=Running,Waiting' + request = ('admin/experiments?state=' + 'Running,Waiting,toAckReservation,' + 'toLaunch,Launching') try: experiments = self.api.method(request) except HTTPError as err: -- 2.43.0