We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c40e0a commit 8914ebdCopy full SHA for 8914ebd
AmplifyPlugins/Auth/Sources/AWSCognitoAuthPlugin/Support/CustomEndpoint/EndpointResolving.swift
@@ -8,7 +8,7 @@
8
import Foundation
9
import SmithyHTTPAPI
10
11
-struct EndpointResolving {
+struct EndpointResolving : @unchecked Sendable {
12
let run: (String) throws -> SmithyHTTPAPI.Endpoint
13
}
14
@@ -20,7 +20,7 @@ extension EndpointResolving {
20
try validationStep.validate(input)
21
22
23
- nonisolated(unsafe) static let userPool = EndpointResolving { endpoint in
+ static let userPool = EndpointResolving { endpoint in
24
// We want to enforce that the endpoint is excluded from the
25
// configuration so as not to give the impression that other
26
// schemes are supported. While we could check for, and allow,
0 commit comments