Skip to content

Commit

Permalink
Merge pull request #451 from imonteroperez/adapt-ipv6
Browse files Browse the repository at this point in the history
Adapt to test on IPv6
  • Loading branch information
jglick authored Jan 23, 2024
2 parents 87eb541 + 9d073c8 commit b0805c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public synchronized BlobStoreContext getContext() throws IOException {
}).
create();
server.start();
baseURL = new URL("http://" + server.getInetAddress().getHostName() + ":" + server.getLocalPort() + "/");
baseURL = new URL("http", server.getInetAddress().getHostName(), server.getLocalPort(), "/");
LOGGER.log(Level.INFO, "Mock server running at {0}", baseURL);
}
return context;
Expand Down

0 comments on commit b0805c1

Please sign in to comment.