We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba5da8e commit c7b7e2aCopy full SHA for c7b7e2a
src/DIRAC/WorkloadManagementSystem/Agent/PilotLoggingAgent.py
@@ -31,6 +31,7 @@ class PilotLoggingAgent(AgentModule):
31
def __init__(self, *args, **kwargs):
32
"""c'tor"""
33
super().__init__(*args, **kwargs)
34
+ self.clearPilotsDelay = 30
35
36
def initialize(self):
37
"""
@@ -42,7 +43,7 @@ def initialize(self):
42
43
:param self: self reference
44
45
# pilot logs lifetime in days
- self.clearPilotsDelay = self.am_getOption("ClearPilotsDelay", 30)
46
+ self.clearPilotsDelay = self.am_getOption("ClearPilotsDelay", self.clearPilotsDelay)
47
# configured VOs and setup
48
res = getVOs()
49
if not res["OK"]:
0 commit comments