Skip to content

Commit

Permalink
Enhanced fix for #5855
Browse files Browse the repository at this point in the history
Fixed test
  • Loading branch information
gregw committed Jan 7, 2021
1 parent aff470c commit 3dc9e63
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -29,6 +29,6 @@ public static Connection acquire(AbstractConnectionPool connectionPool, boolean

public static void tryCreate(AbstractConnectionPool connectionPool, int pending)
{
connectionPool.tryCreate(pending > 0);
connectionPool.tryCreate(pending != 0);
}
}

0 comments on commit 3dc9e63

Please sign in to comment.