[ 
https://issues.apache.org/jira/browse/FLINK-7334?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16111255#comment-16111255
 ] 

ASF GitHub Bot commented on FLINK-7334:
---------------------------------------

Github user tillrohrmann commented on a diff in the pull request:

    https://github.com/apache/flink/pull/4462#discussion_r130930727
  
    --- Diff: 
flink-runtime/src/test/java/org/apache/flink/runtime/rpc/TestingSerialRpcService.java
 ---
    @@ -178,20 +178,19 @@ public int getPort() {
        }
     
        @Override
    -   public <C extends RpcGateway> Future<C> connect(String address, 
Class<C> clazz) {
    +   public <C extends RpcGateway> CompletableFuture<C> connect(String 
address, Class<C> clazz) {
                RpcGateway gateway = registeredConnections.get(address);
     
                if (gateway != null) {
                        if (clazz.isAssignableFrom(gateway.getClass())) {
                                @SuppressWarnings("unchecked")
                                C typedGateway = (C) gateway;
    -                           return 
FlinkCompletableFuture.completed(typedGateway);
    +                           return 
CompletableFuture.completedFuture(typedGateway);
                        } else {
    -                           return 
FlinkCompletableFuture.completedExceptionally(
    -                                   new Exception("Gateway registered under 
" + address + " is not of type " + clazz));
    +                           return FutureUtils.completedExceptionally(new 
Exception("Gateway registered under " + address + " is not of type " + clazz));
                        }
                } else {
    -                   return 
FlinkCompletableFuture.completedExceptionally(new Exception("No gateway 
registered under that name"));
    +                   return FutureUtils.completedExceptionally(new 
Exception("No gateway registered under that name"));
    --- End diff --
    
    will add it.


> Replace Flink's futures by CompletableFuture in RpcGateway
> ----------------------------------------------------------
>
>                 Key: FLINK-7334
>                 URL: https://issues.apache.org/jira/browse/FLINK-7334
>             Project: Flink
>          Issue Type: Sub-task
>          Components: Distributed Coordination
>    Affects Versions: 1.4.0
>            Reporter: Till Rohrmann
>            Assignee: Till Rohrmann
>             Fix For: 1.4.0
>
>




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to