Skip to content

Commit 8de2a4b

Browse files
update workflow for ssh to https
1 parent fbab7e8 commit 8de2a4b

File tree

3 files changed

+1023
-961
lines changed

3 files changed

+1023
-961
lines changed

CRR/clients.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function setupClients({
4242
}),
4343
retryStrategy: new ConfiguredRetryStrategy(
4444
AWS_SDK_REQUEST_RETRIES, // maxAttempts
45-
(attempt) => {
45+
attempt => {
4646
log.error('aws sdk request error', { retryCount: attempt });
4747
// The delay is not truly exponential; it resets to the minimum after every 10 calls,
4848
// with a maximum delay of 15 seconds.

tests/utils/crr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ function initializeCrrWithMocks(config, log, customResponses = {}) {
180180
const responses = { ...defaultResponses, ...customResponses };
181181

182182
// Mock AWS SDK v3 send method to handle commands
183-
const sendMock = jest.fn((command) => {
183+
const sendMock = jest.fn(command => {
184184
const commandName = command.constructor.name;
185185
if (responses[commandName]) {
186186
return Promise.resolve(responses[commandName]);

0 commit comments

Comments
 (0)