Skip to content

Commit

Permalink
Fix for config property for cloud storage. This needs to include "htt…
Browse files Browse the repository at this point in the history
…p://"
  • Loading branch information
jfbenckhuijsen committed Jan 12, 2025
1 parent 49c7c99 commit 7360710
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1479,6 +1479,10 @@ private void writeOutputFrame(OutputFrame frame, Level level) {
}

private String getEmulatorEndpoint(Emulator emulator) {
if (emulator.equals(Emulator.CLOUD_STORAGE)) {
return "http://" + this.getHost() + ":" + emulatorPort(emulator);
}

return this.getHost() + ":" + emulatorPort(emulator);
}
}

0 comments on commit 7360710

Please sign in to comment.