Skip to content

Commit

Permalink
[BEAM-4176] Adding start method back to the FlinkJobserverDriver
Browse files Browse the repository at this point in the history
  • Loading branch information
angoenka committed Oct 16, 2018
1 parent b40c276 commit ae34c93
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,11 @@ public void run() {
}
}

public String start() throws IOException {
jobServer = createJobServer();
return jobServer.getApiServiceDescriptor().getUrl();
}

public void stop() {
if (jobServer != null) {
try {
Expand Down

0 comments on commit ae34c93

Please sign in to comment.