diff --git a/src/python/TaskWorker/Actions/DagmanSubmitter.py b/src/python/TaskWorker/Actions/DagmanSubmitter.py index 212111f2cf..095dd1f697 100644 --- a/src/python/TaskWorker/Actions/DagmanSubmitter.py +++ b/src/python/TaskWorker/Actions/DagmanSubmitter.py @@ -70,7 +70,6 @@ ('+CRAB_SiteBlacklist', 'siteblacklist'), ('+CRAB_SiteWhitelist', 'sitewhitelist'), ('+RequestMemory', 'tm_maxmemory'), - ('+RequestCpus', 'tm_numcores'), ('+MaxWallTimeMins', 'tm_maxjobruntime'), ('+MaxWallTimeMinsRun', 'tm_maxjobruntime'), ('+MaxWallTimeMinsProbe', 'maxproberuntime'), @@ -479,7 +478,7 @@ def submitDirect(self, schedd, cmd, arg, info): #pylint: disable=R0201 jobJDL["JobUniverse"] = 7 jobJDL["HoldKillSig"] = "SIGUSR1" jobJDL["X509UserProxy"] = info['user_proxy'] - jobJDL["Requirements"] = "True || False" + jobJDL["Requirements"] = "True" environmentString = "PATH=/usr/bin:/bin CRAB3_VERSION=3.3.0-pre1" environmentString += " CONDOR_ID=$(ClusterId).$(ProcId)" environmentString += " " + " ".join(info['additional_environment_options'].split(';'))