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

[13_0_X_HLT] set bypassVersionCheck default to True again #45881

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Configuration/DataProcessing/python/Merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def mergeProcess(*inputFiles, **options):
dropDQM = options.get("drop_dqm", False)
newDQMIO = options.get("newDQMIO", False)
mergeNANO = options.get("mergeNANO", False)
bypassVersionCheck = options.get("bypassVersionCheck", False)
bypassVersionCheck = options.get("bypassVersionCheck", True)
# //
# // build process
#//
Expand Down
2 changes: 1 addition & 1 deletion Configuration/DataProcessing/test/RunMerge.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self):
self.inputFiles = []
self.newDQMIO = False
self.mergeNANO = False
self.bypassVersionCheck = False
self.bypassVersionCheck = True


def __call__(self):
Expand Down