We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94a825d commit 21a8bf0Copy full SHA for 21a8bf0
1 file changed
packages/b2c-cli/src/commands/ods/create.ts
@@ -254,10 +254,7 @@ export default class OdsCreate extends OdsCommand<typeof OdsCreate> {
254
this.log(t('commands.ods.create.waiting', 'Waiting for sandbox to be ready...'));
255
256
// Initial delay before first poll to allow the sandbox to be registered in the API
257
- // Skip delay when pollInterval is 0 (test mode)
258
- if (pollIntervalSeconds > 0) {
259
- await this.sleep(2000);
260
- }
+ await this.sleep(pollIntervalMs);
261
262
while (true) {
263
// Check for timeout
0 commit comments