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

Merge branch 'testing'

parents 00c076fb eadb656d
No related branches found
No related tags found
No related merge requests found
Pipeline #28203 passed
...@@ -80,8 +80,8 @@ max_terminated_jobs = 8 ...@@ -80,8 +80,8 @@ max_terminated_jobs = 8
; maximum number of jobs within the 'clean' ('read' only) queue, default is 8 ; maximum number of jobs within the 'clean' ('read' only) queue, default is 8
max_clean_jobs = 8 max_clean_jobs = 8
; minimum time interval in seconds between two consecutive checks on ; minimum time interval in seconds between two consecutive checks on
; job queues, default is 15 s, minimum allowed is 10 s ; job queues, default is 10 s, minimum allowed is 5 s
exec_wait_time = 15 exec_wait_time = 10
[transfer] [transfer]
; split data to be retrieved in blocks of a given size ; split data to be retrieved in blocks of a given size
......
...@@ -23,8 +23,8 @@ class TaskExecutor(Process): ...@@ -23,8 +23,8 @@ class TaskExecutor(Process):
self.maxTerminatedJobs = params.getint("max_terminated_jobs") self.maxTerminatedJobs = params.getint("max_terminated_jobs")
self.maxCleanJobs = params.getint("max_clean_jobs") self.maxCleanJobs = params.getint("max_clean_jobs")
self.execWaitTime = params.getint("exec_wait_time") self.execWaitTime = params.getint("exec_wait_time")
if self.execWaitTime < 10: if self.execWaitTime < 5:
self.execWaitTime = 10 self.execWaitTime = 5
self.srcQueue = None self.srcQueue = None
self.destQueue = None self.destQueue = None
super(TaskExecutor, self).__init__() 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