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

change verbose level in reqmgr2ms configuration files #1124

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 reqmgr2ms/config-monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
data.manager = 'WMCore.MicroService.MSManager.MSManager'
data.reqmgr2Url = "%s/reqmgr2" % BASE_URL
data.enableStatusTransition = True
data.verbose = True
data.verbose = False
data.interval = 600
data.services = ['monitor']
data.rucioAccount = "wmcore_transferor"
Expand Down
2 changes: 1 addition & 1 deletion reqmgr2ms/config-output.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
data.limitRequestsPerCycle = 500
# Allows or not some alert notifications to be sent to the production-admin egroup
data.sendNotification = SEND_NOTIFICATION
data.verbose = True
data.verbose = False
data.interval = 60 * 60 * 1 # run it every hour
data.services = ['output']
# This tape pledges was extracted from WLCG Rebus and will be needed for the PhEDEx-based data placement
Expand Down
2 changes: 1 addition & 1 deletion reqmgr2ms/config-ruleCleaner.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
data.logDBReporter = 'reqmgr2ms_ruleCleaner'
data.archiveDelayHours = ARCH_DELAY_HOURS
data.limitRequestsPerCycle = 500
data.verbose = True
data.verbose = False
data.interval = 60 * 60 * 8 # run it every 8 hours
data.services = ['ruleCleaner']
data.rucioAccount = RUCIO_ACCT
Expand Down
2 changes: 1 addition & 1 deletion reqmgr2ms/config-transferor.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
data.limitRequestsPerCycle = 500
data.enableStatusTransition = True
data.enableDataTransfer = True
data.verbose = True
data.verbose = False
data.interval = 600
data.services = ['transferor']
data.quotaUsage = 0.9
Expand Down
2 changes: 1 addition & 1 deletion reqmgr2ms/config-unmerged.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
data.limitRSEsPerInstance = 200
data.limitFilesPerRSE = -1 # negative values mean NO Limit
data.limitTiersPerInstance = ['T1', 'T2', 'T3']
data.verbose = True
data.verbose = False
data.interval = 60 * 60 * 8 # run it every 8 hours
data.services = ['unmerged']
data.rucioConMon = RUCIO_CONMON_URL
Expand Down