File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -347,7 +347,7 @@ describe("wrangler", () => {
347347 await expect (
348348 runWrangler ( "queues create testQueue --delivery-delay-secs=99999" )
349349 ) . rejects . toThrowErrorMatchingInlineSnapshot (
350- `[Error: Invalid --delivery-delay-secs value: 99999. Must be between 0 and 42300 ]`
350+ `[Error: Invalid --delivery-delay-secs value: 99999. Must be between 0 and 43200 ]`
351351 ) ;
352352
353353 expect ( requests . count ) . toEqual ( 0 ) ;
@@ -607,7 +607,7 @@ describe("wrangler", () => {
607607 await expect (
608608 runWrangler ( "queues update testQueue --delivery-delay-secs=99999" )
609609 ) . rejects . toThrowErrorMatchingInlineSnapshot (
610- `[Error: Invalid --delivery-delay-secs value: 99999. Must be between 0 and 42300 ]`
610+ `[Error: Invalid --delivery-delay-secs value: 99999. Must be between 0 and 43200 ]`
611611 ) ;
612612
613613 expect ( requests . count ) . toEqual ( 0 ) ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ export const INVALID_CONSUMER_SETTINGS_ERROR = 100127;
22export const INVALID_QUEUE_SETTINGS_ERROR = 100128 ;
33
44export const MIN_DELIVERY_DELAY_SECS = 0 ;
5- export const MAX_DELIVERY_DELAY_SECS = 42300 ;
5+ export const MAX_DELIVERY_DELAY_SECS = 43200 ;
66
77export const MIN_MESSAGE_RETENTION_PERIOD_SECS = 60 ;
88export const MAX_MESSAGE_RETENTION_PERIOD_SECS = 1209600 ;
You can’t perform that action at this time.
0 commit comments