Skip to content

Commit

Permalink
Remove most old "Panda" code (#6835)
Browse files Browse the repository at this point in the history
* remove PandaServerInterface. for #6542

* remove unused taskbuffer. For #6542

* remove useless comment about Panda. For #6542

* remove PanDAExceptions. For #6542

* disallow panda scheduler in regexp. for #6542
  • Loading branch information
belforte authored Oct 29, 2021
1 parent 025dfed commit 4a970c6
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 849 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
'CRABInterface':
{
'py_modules': ['PandaServerInterface', 'CRABQuality', 'HTCondorUtils', 'HTCondorLocator', 'ServerUtilities'],
'py_modules': ['CRABQuality', 'HTCondorUtils', 'HTCondorLocator', 'ServerUtilities'],
'python': ['CRABInterface', 'CRABInterface/Pages',
'Databases',
'Databases/FileMetaDataDB', 'Databases/FileMetaDataDB/Oracle',
Expand All @@ -39,7 +39,7 @@
},
'TaskWorker':
{
'py_modules': ['PandaServerInterface', 'RESTInteractions',
'py_modules': ['RESTInteractions',
'apmon', 'Logger', 'ProcInfo',
'CRABQuality', 'HTCondorUtils', 'HTCondorLocator',
'ServerUtilities', 'MultiProcessingLog', 'CMSGroupMapper',
Expand Down
1 change: 0 additions & 1 deletion src/python/CRABInterface/RESTServerInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ def __init__(self, app, api, config, mount, serverdn, centralcfg):
self.serverdn = serverdn
self.logger = logging.getLogger("CRABLogger:RESTServerInfo")
#used by the client to get the url where to update the cache (cacheSSL)
#and by the taskworker Panda plugin to get panda urls

def validate(self, apiobj, method, api, param, safe ):
"""Validating all the input parameter as enforced by the WMCore.REST module"""
Expand Down
2 changes: 1 addition & 1 deletion src/python/CRABInterface/Regexps.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
RX_SUBGETWORKER = re.compile(r"jobgroup")

# Schedulers
RX_SCHEDULER = re.compile(r"^(panda|condor)$")
RX_SCHEDULER = re.compile(r"^(condor)$")



Expand Down
Loading

0 comments on commit 4a970c6

Please sign in to comment.