-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
8330814: Cleanups for KeepAliveCache tests #2813
Conversation
👋 Welcome back ashi! A progress list of the required criteria for merging this PR into |
@amosshi This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 15 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
This backport pull request has now been updated with issue from the original commit. |
/approval request "No risk, test fix. Un-Clean backport. Test passes and SAP nightlies pass on 2024-08-23” |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good and similar to my intial attempt in #2790 which still had an issue in B5045306. This seems to be fixed in this PR through the change in line 73 of B5045306.java:
server = HttpServer.create(new InetSocketAddress(InetAddress.getLocalHost(), 0), 10);
to
server = HttpServer.create(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0), 10);
Otherwise looks the same and passes testing, so LGTM.
/integrate |
Going to push as commit 99b7468.
Your commit was automatically rebased without conflicts. |
Backport of JDK-8330814
commit 1
is aclean
git patch from original commitcommit 2
is fixing the following compile errorTesting
MacOS 14.6.1
on Apple M1 MaxB5045306.java
: Test results: passed: 1B8291637.java
: Test results: passed: 1B8293562.java
: Test results: passed: 1KeepAliveProperty.java
: Test results: passed: 1KeepAliveTimerThread.java
: Test results: passed: 12024-08-23
jtreg_jdk_tier2
, Started at2024-08-23 19:44:34+01:00
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk17u-dev.git pull/2813/head:pull/2813
$ git checkout pull/2813
Update a local copy of the PR:
$ git checkout pull/2813
$ git pull https://git.openjdk.org/jdk17u-dev.git pull/2813/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 2813
View PR using the GUI difftool:
$ git pr show -t 2813
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk17u-dev/pull/2813.diff
Webrev
Link to Webrev Comment