This is an automated email from the ASF dual-hosted git repository.

fhueske pushed a commit to branch release-1.9
in repository https://gitbox.apache.org/repos/asf/flink-playgrounds.git


The following commit(s) were added to refs/heads/release-1.9 by this push:
     new 198fa24  [hotfix] Use correct checkpoint docker volume as set in 
state.checkpoint.dir.
198fa24 is described below

commit 198fa24c0dc2e2141f3e22feef1d50f0bb784b0c
Author: Patrick Wiener <wie...@fzi.de>
AuthorDate: Mon Oct 7 14:44:33 2019 +0200

    [hotfix] Use correct checkpoint docker volume as set in 
state.checkpoint.dir.
    
    This closes #6.
---
 operations-playground/docker-compose.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/operations-playground/docker-compose.yaml 
b/operations-playground/docker-compose.yaml
index 7907092..5a88b98 100644
--- a/operations-playground/docker-compose.yaml
+++ b/operations-playground/docker-compose.yaml
@@ -41,7 +41,7 @@ services:
       - 8081:8081
     volumes:
       - ./conf:/opt/flink/conf
-      - flink-checkpoint-directory:/tmp/flink-checkpoint-directory
+      - flink-checkpoints-directory:/tmp/flink-checkpoints-directory
       - /tmp/flink-savepoints-directory:/tmp/flink-savepoints-directory
     environment:
       - JOB_MANAGER_RPC_ADDRESS=jobmanager
@@ -52,7 +52,7 @@ services:
     command: "taskmanager.sh start-foreground"
     volumes:
       - ./conf:/opt/flink/conf
-      - flink-checkpoint-directory:/tmp/flink-checkpoint-directory
+      - flink-checkpoints-directory:/tmp/flink-checkpoints-directory
       - /tmp/flink-savepoints-directory:/tmp/flink-savepoints-directory
     environment:
       - JOB_MANAGER_RPC_ADDRESS=jobmanager
@@ -70,4 +70,4 @@ services:
     ports:
       - 9094:9094
 volumes:
-  flink-checkpoint-directory:
\ No newline at end of file
+  flink-checkpoints-directory:

Reply via email to