You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by tillrohrmann <gi...@git.apache.org> on 2018/07/02 09:49:47 UTC

[GitHub] flink pull request #6194: [FLINK-9633][checkpoint] Use savepoint path's file...

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

    https://github.com/apache/flink/pull/6194#discussion_r199425645
  
    --- Diff: flink-core/src/main/java/org/apache/flink/core/fs/FileSystem.java ---
    @@ -416,6 +417,12 @@ public static FileSystem getUnguardedFileSystem(final URI fsUri) throws IOExcept
     		}
     	}
     
    +	@VisibleForTesting
    +	public static void setFsFactories(HashMap<String, FileSystemFactory> fsFactories) {
    --- End diff --
    
    Let's pass in a `Map` instead of a `HashMap`.


---