Skip to content

Commit db3b7d5

Browse files
bgraingervaintroub
andauthored
Update src/MySqlConnector/Protocol/Serialization/AuthGSSAPI.cs
Co-Authored-By: vaintroub <[email protected]>
1 parent 6c2fcb7 commit db3b7d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MySqlConnector/Protocol/Serialization/AuthGSSAPI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public static async Task<PayloadData> AuthenticateAsync(byte[] switchRequestPayl
223223
using (var negotiateStream = new NegotiateStream(innerStream))
224224
{
225225
var targetName = GetServicePrincipalName(switchRequestPayloadData);
226-
await negotiateStream.AuthenticateAsClientAsync(CredentialCache.DefaultNetworkCredentials, targetName);
226+
await negotiateStream.AuthenticateAsClientAsync(CredentialCache.DefaultNetworkCredentials, targetName).ConfigureAwait(false);
227227

228228
if (innerStream.MySQLProtocolPayload.ArraySegment.Array != null)
229229
// return already pre-read OK packet.

0 commit comments

Comments
 (0)