Skip to content

Commit

Permalink
Merge pull request #198 from quarkiverse/fix/dev-services-http
Browse files Browse the repository at this point in the history
Revert to using HTTP when connecting to dev services containers
  • Loading branch information
kdubb authored Nov 20, 2023
2 parents 3725666 + 23f3d4a commit 17096c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ private static class VaultInstance {
private final Closeable closeable;

public VaultInstance(String host, int port, String clientToken, Closeable closeable) {
this("https://" + host + ":" + port, clientToken, closeable);
this("http://" + host + ":" + port, clientToken, closeable);
}

public VaultInstance(String url, String clientToken, Closeable closeable) {
Expand Down

0 comments on commit 17096c6

Please sign in to comment.