21
21
),
22
22
'jobqueueCreateQueue ' => array (
23
23
'options ' => array (
24
- 'route ' => 'jobqueueCreateQueue --name= [--status=] [--priority=] [--max_http_jobs=] [--max_wait_time=] [--connection_timeout =] [--http_job_timeout=] [--http_job_retry_count=] [--http_job_retry_timeout=] ' ,
24
+ 'route ' => 'jobqueueCreateQueue --name= [--status=] [--priority=] [--max_http_jobs=] [--max_wait_time=] [--http_connection_timeout =] [--http_job_timeout=] [--http_job_retry_count=] [--http_job_retry_timeout=] ' ,
25
25
'defaults ' => array (
26
26
'controller ' => 'webapi-api-controller ' ,
27
27
'action ' => 'jobqueueCreateQueue ' ,
35
35
array ('--priority ' , 'Value between 0 and 4. (4 is highest priority). Default is 2. ' ),
36
36
array ('--max_http_jobs ' , 'Max concurrent jobs in this queue. Default is 5. ' ),
37
37
array ('--max_wait_time ' , 'Max waiting time for a job inside a queue. used to avoid starvation. Default is 5. ' ),
38
- array ('--connection_timeout ' , 'Number of seconds the daemon tries to establish a connection with a back-end server. Default is 30. ' ),
38
+ array ('--http_connection_timeout ' , 'Number of seconds the daemon tries to establish a connection with a back-end server. Default is 30. ' ),
39
39
array ('--http_job_timeout ' , 'Number of seconds a URL-based job must be completed. Default is 120. ' ),
40
40
array ('--http_job_retry_count ' , 'Number of retries for failed HTTP jobs. Default is 10. ' ),
41
41
array ('--http_job_retry_timeout ' , 'The number of seconds between retries for failed HTTP jobs. Default is 1. ' ),
44
44
),
45
45
'jobqueueUpdateQueue ' => array (
46
46
'options ' => array (
47
- 'route ' => 'jobqueueUpdateQueue --id= [--name=] [--status=] [--priority=] [--max_http_jobs=] [--max_wait_time=] [--connection_timeout =] [--http_job_timeout=] [--http_job_retry_count=] [--http_job_retry_timeout=] ' ,
47
+ 'route ' => 'jobqueueUpdateQueue --id= [--name=] [--status=] [--priority=] [--max_http_jobs=] [--max_wait_time=] [--http_connection_timeout =] [--http_job_timeout=] [--http_job_retry_count=] [--http_job_retry_timeout=] ' ,
48
48
'defaults ' => array (
49
49
'controller ' => 'webapi-api-controller ' ,
50
50
'action ' => 'jobqueueUpdateQueue ' ,
59
59
array ('--priority ' , 'Value between 0 and 4. (4 is highest priority). Default is 2. ' ),
60
60
array ('--max_http_jobs ' , 'Max concurrent jobs in this queue. Default is 5. ' ),
61
61
array ('--max_wait_time ' , 'Max waiting time for a job inside a queue. used to avoid starvation. Default is 5. ' ),
62
- array ('--connection_timeout ' , 'Number of seconds the daemon tries to establish a connection with a back-end server. Default is 30. ' ),
62
+ array ('--http_connection_timeout ' , 'Number of seconds the daemon tries to establish a connection with a back-end server. Default is 30. ' ),
63
63
array ('--http_job_timeout ' , 'Number of seconds a URL-based job must be completed. Default is 120. ' ),
64
64
array ('--http_job_retry_count ' , 'Number of retries for failed HTTP jobs. Default is 10. ' ),
65
65
array ('--http_job_retry_timeout ' , 'The number of seconds between retries for failed HTTP jobs. Default is 1. ' ),
373
373
)
374
374
)
375
375
)
376
- );
376
+ );
0 commit comments