We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8990864 commit 9f2a4faCopy full SHA for 9f2a4fa
src/java.net.http/share/classes/jdk/internal/net/http/HttpConnection.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2024, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
@@ -409,7 +409,7 @@ void closeOrReturnToCache(HttpHeaders hdrs) {
409
.map((s) -> !s.equalsIgnoreCase("close"))
410
.orElse(true);
411
412
- if (keepAlive && checkOpen()) {
+ if (keepAlive && isOpen()) {
413
Log.logTrace("Returning connection to the pool: {0}", this);
414
pool.returnToPool(this);
415
} else {
0 commit comments