Skip to content

Commit 819f2fb

Browse files
slav-at-attachixStanislav Pääslane
and
Stanislav Pääslane
committed
JobQueue fixes.
Co-authored-by: Stanislav Pääslane <stanislav.paaslane@roguewave.com>
1 parent c4389bd commit 819f2fb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

config/api/version-1.10.config.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
),
2222
'jobqueueCreateQueue' => array(
2323
'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=]',
2525
'defaults' => array(
2626
'controller' => 'webapi-api-controller',
2727
'action' => 'jobqueueCreateQueue',
@@ -35,7 +35,7 @@
3535
array('--priority', 'Value between 0 and 4. (4 is highest priority). Default is 2.'),
3636
array('--max_http_jobs', 'Max concurrent jobs in this queue. Default is 5.'),
3737
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.'),
3939
array('--http_job_timeout', 'Number of seconds a URL-based job must be completed. Default is 120.'),
4040
array('--http_job_retry_count', 'Number of retries for failed HTTP jobs. Default is 10.'),
4141
array('--http_job_retry_timeout', 'The number of seconds between retries for failed HTTP jobs. Default is 1.'),
@@ -44,7 +44,7 @@
4444
),
4545
'jobqueueUpdateQueue' => array(
4646
'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=]',
4848
'defaults' => array(
4949
'controller' => 'webapi-api-controller',
5050
'action' => 'jobqueueUpdateQueue',
@@ -59,7 +59,7 @@
5959
array('--priority', 'Value between 0 and 4. (4 is highest priority). Default is 2.'),
6060
array('--max_http_jobs', 'Max concurrent jobs in this queue. Default is 5.'),
6161
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.'),
6363
array('--http_job_timeout', 'Number of seconds a URL-based job must be completed. Default is 120.'),
6464
array('--http_job_retry_count', 'Number of retries for failed HTTP jobs. Default is 10.'),
6565
array('--http_job_retry_timeout', 'The number of seconds between retries for failed HTTP jobs. Default is 1.'),
@@ -373,4 +373,4 @@
373373
)
374374
)
375375
)
376-
);
376+
);

0 commit comments

Comments
 (0)