Skip to content
Snippets Groups Projects
Commit 3288fa33 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[settings] Add settings flag to control display of scheduling helper panel

parent 4032d287
No related branches found
No related tags found
1 merge request!194Scheduler
...@@ -219,11 +219,16 @@ EMAIL_USE_TLS = False ...@@ -219,11 +219,16 @@ EMAIL_USE_TLS = False
# The scheduling interval controls the number of seconds between # The scheduling interval controls the number of seconds between
# scheduling attempts (calls to :py:func:`beat.web.backend.schedule.schedule`) # scheduling attempts (calls to :py:func:`beat.web.backend.schedule.schedule`)
SCHEDULING_INTERVAL = 5 #seconds SCHEDULING_INTERVAL = 5 #seconds
# The worker interval controls the number of seconds between checks # The worker interval controls the number of seconds between checks
# a particular worker will run to verify jobs are not scheduled to itself # a particular worker will run to verify jobs are not scheduled to itself
WORKER_INTERVAL = 5 #seconds WORKER_INTERVAL = 5 #seconds
# If set, a testing panel that can accomplish scheduling activities will appear
# at the scheduler page allowing administrators to launch scheduling activities
# manually.
SCHEDULING_PANEL = True
# The maximum index split errors control the maximum number of times we can # The maximum index split errors control the maximum number of times we can
# incur in an index split error condition without cancelling the block # incur in an index split error condition without cancelling the block
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment