We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fec06cb commit 200c7f2Copy full SHA for 200c7f2
1 file changed
src/services/sns/data.ts
@@ -21,8 +21,8 @@ import { convertAwsTagsToTagMap } from '../../utils/format'
21
import AwsErrorLog from '../../utils/errorLog'
22
import { initTestEndpoint, setAwsRetryOptions } from '../../utils'
23
import {
24
- API_GATEWAY_CUSTOM_DELAY,
25
MAX_FAILED_AWS_REQUEST_RETRIES,
+ SNS_CUSTOM_DELAY,
26
} from '../../config/constants'
27
28
const lt = { ...awsLoggerText }
@@ -32,7 +32,7 @@ const errorLog = new AwsErrorLog(serviceName)
32
const endpoint = initTestEndpoint(serviceName)
33
const customRetrySettings = setAwsRetryOptions({
34
maxRetries: MAX_FAILED_AWS_REQUEST_RETRIES,
35
- baseDelay: API_GATEWAY_CUSTOM_DELAY,
+ baseDelay: SNS_CUSTOM_DELAY,
36
})
37
38
/**
0 commit comments