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 7880ee4 commit 86b73d0Copy full SHA for 86b73d0
Pilot/pilotCommands.py
@@ -555,8 +555,11 @@ def execute(self):
555
Deprecated with DIRAC V9 and DiracX."""
556
557
if self.pp.jwt:
558
- self.log.warn("Skipping module, normally it is already done via DiracX secret-exchange.")
559
- return
+ if not self.pp.isLegacyLogging:
+ self.log.warn("Skipping module, normally it is already done via DiracX secret-exchange.")
560
+ return
561
+
562
+ # If we're here, this is a legacy pilot with a diracX token embedded in it.
563
564
if not self.pp.pilotReference:
565
self.log.warn("Skipping module, no pilot reference found")
0 commit comments