Skip to content

Commit

Permalink
[hotfix] fix ResourceManagerGateway
Browse files Browse the repository at this point in the history
  • Loading branch information
mxm authored and StephanEwen committed Dec 23, 2016
1 parent b08e257 commit 0370888
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import org.apache.flink.runtime.jobmaster.JobMaster;
import org.apache.flink.runtime.registration.RegistrationResponse;

import org.apache.flink.runtime.registration.RegistrationResponse;
import java.util.UUID;

/**
Expand All @@ -39,13 +38,15 @@ public interface ResourceManagerGateway extends RpcGateway {
* Register a {@link JobMaster} at the resource manager.
*
* @param resourceManagerLeaderId The fencing token for the ResourceManager leader
* @param jobMasterLeaderId The fencing token for the JobMaster leader
* @param jobMasterAddress The address of the JobMaster that registers
* @param jobID The Job ID of the JobMaster that registers
* @param timeout Timeout for the future to complete
* @return Future registration response
*/
Future<RegistrationResponse> registerJobMaster(
UUID resourceManagerLeaderId,
UUID jobMasterLeaderId,
String jobMasterAddress,
JobID jobID,
@RpcTimeout Time timeout);
Expand Down

0 comments on commit 0370888

Please sign in to comment.