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 db98c79 commit 57a4f06Copy full SHA for 57a4f06
src/DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py
@@ -338,6 +338,9 @@ def __prepareCommand(self):
338
submissionPolicy = self.ceArgs.get("SubmissionPolicy", gConfig.getValue("/LocalSite/SubmissionPolicy", ""))
339
if submissionPolicy == "Application":
340
configOptions += "-o /LocalSite/RemoteExecution=True "
341
+ # Disable the watchdog CPU wallclock check because the application is running
342
+ # on a remote worker node, so values are not relevant
343
+ (self.jobIDPath / "DISABLE_WATCHDOG_CPU_WALLCLOCK_CHECK").touch()
344
345
command = executable
346
if jobArguments:
0 commit comments