Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused JSON encoding choice keywords #12141

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions src/python/WMCore/Services/RequestDB/RequestDBWriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,6 @@ def __init__(self, couchURL, couchapp="ReqMgr"):
# set the connection for local couchDB call
# inherited from WMStatsReader
self._commonInit(couchURL, couchapp)
self._propertyNeedToBeEncoded = ["RequestTransition",
"PriorityTransition",
"SiteWhitelist",
"SiteBlacklist",
"BlockWhitelist",
"InputDatasetTypes",
"OutputDatasets"]

def insertGenericRequest(self, doc):

Expand All @@ -31,7 +24,7 @@ def updateRequestStatus(self, request, status, dn=None):

def updateRequestStats(self, request, stats):
"""
This functionis only available ReqMgr couch app currutly (not T0)
This function is only available ReqMgr couch app currently (not T0)
WQ specific function
param: stats: dict of {'total_jobs': 0, 'input_lumis': 0,
'input_events': 0, 'input_num_files': 0}
Expand Down