diff --git a/src/config/schema-type.ts b/src/config/schema-type.ts index 8ffd6d70..8ee66c01 100644 --- a/src/config/schema-type.ts +++ b/src/config/schema-type.ts @@ -118,7 +118,7 @@ export const schemaTypes = { }, deltaRequestTimeout: { type: PermissiveNumber, - default: 30000, + default: 59000, }, deltaApplyTimeout: { type: PermissiveNumber, diff --git a/src/device-config.ts b/src/device-config.ts index 470ee9ce..c3840877 100644 --- a/src/device-config.ts +++ b/src/device-config.ts @@ -148,7 +148,7 @@ const configKeys: Dictionary = { deltaRequestTimeout: { envVarName: 'SUPERVISOR_DELTA_REQUEST_TIMEOUT', varType: 'int', - defaultValue: '30000', + defaultValue: '59000', }, deltaApplyTimeout: { envVarName: 'SUPERVISOR_DELTA_APPLY_TIMEOUT', diff --git a/test/12-device-config.spec.ts b/test/12-device-config.spec.ts index ffcd6547..3d492a07 100644 --- a/test/12-device-config.spec.ts +++ b/test/12-device-config.spec.ts @@ -255,7 +255,7 @@ describe('Device Backend Config', () => { SUPERVISOR_CONNECTIVITY_CHECK: 'true', SUPERVISOR_LOG_CONTROL: 'true', SUPERVISOR_DELTA: 'false', - SUPERVISOR_DELTA_REQUEST_TIMEOUT: '30000', + SUPERVISOR_DELTA_REQUEST_TIMEOUT: '59000', SUPERVISOR_DELTA_APPLY_TIMEOUT: '0', SUPERVISOR_DELTA_RETRY_COUNT: '30', SUPERVISOR_DELTA_RETRY_INTERVAL: '10000',