Skip to content

Commit

Permalink
Fix host in ChromaDockerComposeConnectionDetailsFactory
Browse files Browse the repository at this point in the history
Host should start with `http://`

Fixes spring-projects#1395
  • Loading branch information
eddumelendez committed Sep 23, 2024
1 parent acb31e7 commit 912deb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static class ChromaDockerComposeConnectionDetails extends DockerComposeConnectio

@Override
public String getHost() {
return this.host;
return "http://%s".formatted(this.host);
}

@Override
Expand Down

0 comments on commit 912deb8

Please sign in to comment.