You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2020/09/22 08:27:55 UTC

[flink-statefun] 01/04: [hotfix][dockerfile] Add newline to end of flink-conf

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

tzulitai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git

commit c37f4c4c4c230e25de14bad74d26da57117d2975
Author: Seth Wiesman <sj...@gmail.com>
AuthorDate: Mon Sep 21 17:18:55 2020 -0500

    [hotfix][dockerfile] Add newline to end of flink-conf
    
    When building small applications it's often easy to simply append
    flink configurations to the provided base image directly inside the
    Dockerfile. echo does not prepend a newline so its convenient to leave
    one at the end of the file. Otherwise, the first configuration is added
    to the task manager memory amount which leads to a strange parse error on
    deployment.
    
    This closes #160.
---
 tools/docker/flink-distribution-template/conf/flink-conf.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/docker/flink-distribution-template/conf/flink-conf.yaml b/tools/docker/flink-distribution-template/conf/flink-conf.yaml
index 929df96..8b9b4e4 100644
--- a/tools/docker/flink-distribution-template/conf/flink-conf.yaml
+++ b/tools/docker/flink-distribution-template/conf/flink-conf.yaml
@@ -45,4 +45,4 @@ state.backend.incremental: true
 #==============================================================================
 
 jobmanager.memory.process.size: 1g
-taskmanager.memory.process.size: 4g
\ No newline at end of file
+taskmanager.memory.process.size: 4g