Skip to content

Commit 9e98833

Browse files
committed
chore: try lowering concurrency
1 parent 5b00e14 commit 9e98833

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/middleware-user-agent/src/check-features.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ export async function checkFeatures(
7676
}
7777
}
7878

79-
const identity = context.__smithy_context?.selectedHttpAuthScheme?.identity;
79+
// TODO: later version of @smithy/types has explicit typing for this.
80+
const identity = (context.__smithy_context?.selectedHttpAuthScheme as any)?.identity;
81+
8082
if ((identity as AttributedAwsCredentialIdentity).$source) {
8183
const credentials = identity as AttributedAwsCredentialIdentity;
8284
if (credentials.accountId) {

0 commit comments

Comments
 (0)