Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change error message
  • Loading branch information
ecrocombe committed Feb 26, 2025
commit acff8cfc77b94dd352315103198be49f526395a3
2 changes: 1 addition & 1 deletion src/Npgsql/Internal/NpgsqlConnector.Auth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ await AuthenticateSASL(((AuthenticationSASLMessage)msg).Mechanisms, username, as
}

// If we made it this far, authentication failed to occur within the specified timeout, or attempt limit.
throw new NpgsqlException($"Authentication cycle timed out after {attempt} attempts.");
throw new NpgsqlException($"Authentication cycle failed to complete successfully after {attempt} attempts.");
}

async Task AuthenticateCleartext(string username, bool async, CancellationToken cancellationToken = default)
Expand Down