Skip to content

Commit 1e8324e

Browse files
committed
chore: set mrt bundle deploy default poll interval to 30s
1 parent 6378dde commit 1e8324e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/cli/mrt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ b2c mrt bundle deploy -p my-storefront -e staging --wait
471471
| `--node-version`, `-n` | Node.js version for SSR | `22.x` |
472472
| `--ssr-param` | SSR parameters (key=value) | |
473473
| `--wait`, `-w` | Wait for the deployment to complete before returning | `false` |
474-
| `--poll-interval` | Polling interval in seconds when using `--wait` | `10` |
474+
| `--poll-interval` | Polling interval in seconds when using `--wait` | `30` |
475475
| `--timeout` | Maximum time to wait in seconds when using `--wait` (`0` for no timeout) | `600` |
476476

477477
### b2c mrt bundle list

packages/b2c-cli/src/commands/mrt/bundle/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export default class MrtBundleDeploy extends MrtCommand<typeof MrtBundleDeploy>
126126
}),
127127
'poll-interval': Flags.integer({
128128
description: 'Polling interval in seconds when using --wait',
129-
default: 10,
129+
default: 30,
130130
dependsOn: ['wait'],
131131
}),
132132
timeout: Flags.integer({

0 commit comments

Comments
 (0)