Skip to content

Commit

Permalink
Add missing PolyphenyInstance call for Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens authored and datomo committed May 30, 2024
1 parent 8892921 commit da0acb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ default String deployNeo4j() throws ExecutorException {


default int getDockerInstanceId() {
String url = "http://localhost:" + PolyphenyVersionSwitch.getInstance().uiPort + "/getDockerInstances";
String url = "http://localhost:" + PolyphenyVersionSwitch.getInstance().uiPort + PolyphenyVersionSwitch.getInstance().dockerInstancesEndpoint;
HttpResponse<String> response = Unirest.get( url ).asString();

if ( response.getStatus() == 200 ) {
Expand Down

0 comments on commit da0acb1

Please sign in to comment.