Skip to content

Commit

Permalink
Modernize htc (#8495)
Browse files Browse the repository at this point in the history
* bump htc bindings to 23.0 for crabserver

* stupid typo

* we want HTC ~= 23.0.12  see PR #8492
  • Loading branch information
belforte authored Jun 14, 2024
1 parent 117fa88 commit 039e5b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cicd/crabserver_pypi/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ PyJWT==2.4.0
retry==0.9.2
boto3~=1.12.49
cx-Oracle~=8.3.0
htcondor~=10.2.3
htcondor~=23.0.12
2 changes: 1 addition & 1 deletion src/python/TaskWorker/Actions/DagmanSubmitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def pickAndSetSchedd(self, task):
alreadyTriedSchedds = scheddStats.taskErrors.keys() #keys in the taskerrors are schedd

currentBackendurls = copy.deepcopy(self.backendurls)
currentBackendurls['htcondorSchedds'] = { k:v for (k,v) in restSchedulers.item() if k not in alreadyTriedSchedds}
currentBackendurls['htcondorSchedds'] = { k:v for (k,v) in restSchedulers.items() if k not in alreadyTriedSchedds}
if not currentBackendurls['htcondorSchedds']:
return None
loc = HTCondorLocator.HTCondorLocator(currentBackendurls, self.logger)
Expand Down

0 comments on commit 039e5b8

Please sign in to comment.