Skip to content
Snippets Groups Projects
Commit eadb656d authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Reduced 'execWaitTime' minimum value.

parent fef6a65a
No related branches found
No related tags found
No related merge requests found
......@@ -80,8 +80,8 @@ max_terminated_jobs = 8
; maximum number of jobs within the 'clean' ('read' only) queue, default is 8
max_clean_jobs = 8
; minimum time interval in seconds between two consecutive checks on
; job queues, default is 15 s, minimum allowed is 10 s
exec_wait_time = 15
; job queues, default is 10 s, minimum allowed is 5 s
exec_wait_time = 10
[transfer]
; split data to be retrieved in blocks of a given size
......
......@@ -23,8 +23,8 @@ class TaskExecutor(Process):
self.maxTerminatedJobs = params.getint("max_terminated_jobs")
self.maxCleanJobs = params.getint("max_clean_jobs")
self.execWaitTime = params.getint("exec_wait_time")
if self.execWaitTime < 10:
self.execWaitTime = 10
if self.execWaitTime < 5:
self.execWaitTime = 5
self.srcQueue = None
self.destQueue = None
super(TaskExecutor, self).__init__()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment