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

    https://github.com/apache/flink/pull/3602#discussion_r107935639
  
    --- Diff: 
flink-tests/src/test/java/org/apache/flink/test/checkpointing/AbstractEventTimeWindowCheckpointingITCase.java
 ---
    @@ -115,6 +117,14 @@ public static void stopTestCluster() {
        @Before
        public void initStateBackend() throws IOException {
                switch (stateBackendEnum) {
    +                   case MEM_ASYNC:
    +                           this.stateBackend = new 
AsyncMemoryStateBackend(MAX_MEM_STATE_SIZE);
    +                           break;
    +                   case FILE_ASYNC: {
    +                           String backups = 
tempFolder.newFolder().getAbsolutePath();
    +                           this.stateBackend = new 
AsyncFsStateBackend("file://" + backups);
    --- End diff --
    
    That is true. This similar issue should have been there, because this is 
basically just copy-paste from the `case FILE`. I will fix both.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to