From 24bfb1af959e1286414399df4c8151152f29b0c9 Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Tue, 26 May 2026 16:08:12 +0200 Subject: [PATCH] cocluto v1.0.24 - fixed bug in quman's Sge backend that aused QstatParser to fail work related to [https://bugzilla.ipr.univ-rennes.fr/show_bug.cgi?id=3093] --- cocluto/quman.py | 2 +- cocluto/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cocluto/quman.py b/cocluto/quman.py index 5a01070..df1a653 100755 --- a/cocluto/quman.py +++ b/cocluto/quman.py @@ -120,7 +120,7 @@ class Sge(IGridEngine): self.run_qmod(["-e", queue_machine]) def get_status(self) -> QueuesStatus: - process = subprocess.run(['qstat', '-f', '-u', '*'], check=True, capture_output=True) + process = subprocess.run(['qstat', '-f', '-u', '*', '-pri'], check=True, capture_output=True) # Parse the output to extract queue statuses # This is a simplified example - you would need to parse the actual qstat output queues_status = QueuesStatus() diff --git a/cocluto/version.py b/cocluto/version.py index f742e50..d875446 100644 --- a/cocluto/version.py +++ b/cocluto/version.py @@ -1,4 +1,4 @@ -__version__ = '1.0.23' +__version__ = '1.0.24' class Version(object):