Skip to content

Commit 9f2a4fa

Browse files
committedApr 19, 2024
8330572: jdk.internal.net.http.HttpConnection calls an expensive checkOpen() when returning a HTTP/1.1 connection to the pool
Reviewed-by: dfuchs, djelinski
1 parent 8990864 commit 9f2a4fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/java.net.http/share/classes/jdk/internal/net/http/HttpConnection.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -409,7 +409,7 @@ void closeOrReturnToCache(HttpHeaders hdrs) {
409409
.map((s) -> !s.equalsIgnoreCase("close"))
410410
.orElse(true);
411411

412-
if (keepAlive && checkOpen()) {
412+
if (keepAlive && isOpen()) {
413413
Log.logTrace("Returning connection to the pool: {0}", this);
414414
pool.returnToPool(this);
415415
} else {

0 commit comments

Comments
 (0)
Please sign in to comment.