Skip to content

Commit a485eb9

Browse files
committed
Help text to clarify when DFHDPLOY default is used
When timeout is not specified, the DFHDPLOY default of 300 seconds will take affect.
1 parent ab05e7b commit a485eb9

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

docs/pages/cdp/CLIReadme.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ the target group of CICS regions\.
9090
* `--timeout` | `--to` *(number)*
9191

9292
* An optional numerical value that specifies the maximum amount of time in seconds
93-
(1 \- 1800 inclusive) for the DFHDPLOY command to complete\.
93+
(1 \- 1800 inclusive) for the DFHDPLOY command to complete\. If not specified
94+
DFHDPLOY will use its default of 300 seconds\.
9495

9596
* `--target-state` | `--ts` | `--targetstate` *(string)*
9697

@@ -287,7 +288,8 @@ Push a CICS bundle from the working directory to a target CICSplex\.
287288
* `--timeout` | `--to` *(number)*
288289

289290
* An optional numerical value that specifies the maximum amount of time in seconds
290-
(1 \- 1800 inclusive) for the DFHDPLOY command to complete\.
291+
(1 \- 1800 inclusive) for the DFHDPLOY command to complete\. If not specified
292+
DFHDPLOY will use its default of 300 seconds\.
291293

292294
* `--target-state` | `--ts` | `--targetstate` *(string)*
293295

@@ -408,7 +410,8 @@ target group of CICS regions\.
408410
* `--timeout` | `--to` *(number)*
409411

410412
* An optional numerical value that specifies the maximum amount of time in seconds
411-
(1 \- 1800 inclusive) for the DFHDPLOY command to complete\.
413+
(1 \- 1800 inclusive) for the DFHDPLOY command to complete\. If not specified
414+
DFHDPLOY will use its default of 300 seconds\.
412415

413416
* `--target-state` | `--ts` | `--targetstate` *(string)*
414417

src/cli/shared/Timeout.option.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ export const TimeoutOption: ICommandOptionDefinition = {
2323
type: "number",
2424
numericValueRange: [1, MAX_VALUE],
2525
description: "An optional numerical value that specifies the maximum amount of time in seconds " +
26-
"(1 - 1800 inclusive) for the DFHDPLOY command to complete."
26+
"(1 - " + MAX_VALUE + " inclusive) for the DFHDPLOY command to complete. If not specified " +
27+
"DFHDPLOY will use its default of 300 seconds."
2728
};
28-

0 commit comments

Comments
 (0)