Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jbelkins committed May 3, 2024
1 parent a70b6da commit 7ea652a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ public class AWSClientConfigDefaultsProvider {
resolvedRateLimitingMode = .adaptive
}

return RetryStrategyOptions(backoffStrategy: ExponentialBackoffStrategy(), maxRetriesBase: resolvedMaxAttempts - 1, rateLimitingMode: resolvedRateLimitingMode)
return RetryStrategyOptions(
backoffStrategy: ExponentialBackoffStrategy(),
maxRetriesBase: resolvedMaxAttempts - 1,
rateLimitingMode: resolvedRateLimitingMode
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
//
// SPDX-License-Identifier: Apache-2.0
//

import AwsCommonRuntimeKit

/// Type of signing algorithm
Expand Down

0 comments on commit 7ea652a

Please sign in to comment.