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
reduce auth attempts
  • Loading branch information
ecrocombe committed Feb 26, 2025
commit f87871d7aff48b138d09ea54f02fd1c5c5aeae08
2 changes: 1 addition & 1 deletion src/Npgsql/Internal/NpgsqlConnector.Auth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Npgsql.Internal;
partial class NpgsqlConnector
{

private const int MAX_AUTH_ATTEMPTS = 100;
private const int MAX_AUTH_ATTEMPTS = 10;

async Task Authenticate(string username, NpgsqlTimeout timeout, bool async, CancellationToken cancellationToken)
{
Expand Down