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 9d437d8 commit ba5da8eCopy full SHA for ba5da8e
src/DIRAC/WorkloadManagementSystem/Agent/PilotLoggingAgent.py
@@ -52,8 +52,6 @@ def initialize(self):
52
if isinstance(self.voList, str):
53
self.voList = [self.voList]
54
55
- self.setup = gConfig.getValue("/DIRAC/Setup", None)
56
-
57
return S_OK()
58
59
def execute(self):
@@ -65,7 +63,7 @@ def execute(self):
65
63
"""
66
64
voRes = {}
67
for vo in self.voList:
68
- self.opsHelper = Operations(vo=vo, setup=self.setup)
+ self.opsHelper = Operations(vo=vo)
69
# is remote pilot logging enabled for the VO ?
70
pilotLogging = self.opsHelper.getValue("/Pilot/RemoteLogging", False)
71
if pilotLogging:
0 commit comments