Skip to content

Commit

Permalink
remove check for negative pid in cancel request. Apparently pgbouncer…
Browse files Browse the repository at this point in the history
… can send one fixes Issue #2318 (#2319)
  • Loading branch information
davecramer committed Oct 25, 2021
1 parent a578603 commit c9be5c0
Showing 1 changed file with 0 additions and 3 deletions.
Expand Up @@ -169,9 +169,6 @@ public boolean isClosed() {

@Override
public void sendQueryCancel() throws SQLException {
if (cancelPid <= 0) {
return;
}

PGStream cancelStream = null;

Expand Down

0 comments on commit c9be5c0

Please sign in to comment.