-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Minor
-
Affects Version/s: CREAM TORQUE module 2.1.2
-
Security Level: Public (Visbile by non-authn users.)
-
None
Source: https://ggus.eu/ws/ticket_info.php?ticket=98910
This issue covers the following bugs:
1) the script info-dynamic-pbs does not perform the behavior:
"min(resources_default.cput, resources_default.pcput) if defined, min(resources_max.cput, resources_max.pcput) otherwise". The provider mixes up the following instruction:
if self.maxCPUtime == -1 and self.defaultCPUtime <> -1:
self.maxCPUtime = self.defaultCPUtime
with:
if self.defaultCPUtime == -1 and self.maxCPUtime <> -1:
self.defaultCPUtime = self.maxCPUtime
2) The dynamic information provider is not able to retrieve the parameter defined at a server level, instead of a queue level.