Skip to content

Commit

Permalink
Merge pull request #31 from launchdarkly/eb/ch72725/okhttp-update
Browse files Browse the repository at this point in the history
update to okhttp 4.5.0
  • Loading branch information
eli-darkly authored Apr 7, 2020
2 parents e5e7a5d + 439b9ff commit 3e72475
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ allprojects {
}

ext.versions = [
"okhttp": "4.4.1",
"okhttp": "4.5.0",
"slf4j": "1.7.22"
]

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/launchdarkly/eventsource/StubServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void handle(String target, Request baseRequest, HttpServletRequest reques
baseRequest.setHandled(true);
}
});
server.setStopTimeout(1); // without this, Jetty does not interrupt worker threads on shutdown
server.setStopTimeout(100); // without this, Jetty does not interrupt worker threads on shutdown

try {
server.start();
Expand Down

0 comments on commit 3e72475

Please sign in to comment.