Skip to content

Commit

Permalink
Remove redundant tcp prefix from controller URI when setting up Pravega
Browse files Browse the repository at this point in the history
  • Loading branch information
tzulitai committed Sep 26, 2017
1 parent 261ad72 commit 2fe0e92
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void stopAllServices() throws Exception {
* @return URI The controller endpoint to connect to this cluster.
*/
public URI getControllerUri() {
return URI.create("tcp://" + this.inProcPravegaCluster.getControllerURI());
return URI.create(this.inProcPravegaCluster.getControllerURI());
}

/**
Expand Down

0 comments on commit 2fe0e92

Please sign in to comment.