Skip to content

Commit

Permalink
Increase default timeout interval for pollJobStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoBFerreira committed Dec 18, 2024
1 parent 580bd8f commit 98cd3d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/zcli-themes/src/lib/pollJobStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { request } from '@zendesk/zcli-core'
import * as chalk from 'chalk'
import validationErrorsToString from './validationErrorsToString'

export default async function pollJobStatus (themePath: string, jobId: string, interval = 1000, retries = 10): Promise<void> {
export default async function pollJobStatus (themePath: string, jobId: string, interval = 2000, retries = 10): Promise<void> {
CliUx.ux.action.start('Polling job status')

while (retries) {
Expand Down

0 comments on commit 98cd3d6

Please sign in to comment.