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]
This commit is contained in:
Guillaume Raffy 2026-05-26 16:08:12 +02:00
parent fb5e9fcfa4
commit 24bfb1af95
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ class Sge(IGridEngine):
self.run_qmod(["-e", queue_machine]) self.run_qmod(["-e", queue_machine])
def get_status(self) -> QueuesStatus: 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 # Parse the output to extract queue statuses
# This is a simplified example - you would need to parse the actual qstat output # This is a simplified example - you would need to parse the actual qstat output
queues_status = QueuesStatus() queues_status = QueuesStatus()

View File

@ -1,4 +1,4 @@
__version__ = '1.0.23' __version__ = '1.0.24'
class Version(object): class Version(object):