Skip to content

Commit

Permalink
build: change the build template not to use iteritems (MINOR) (conflu…
Browse files Browse the repository at this point in the history
  • Loading branch information
agavra committed Apr 2, 2020
1 parent a65a84e commit 7fe7e07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/connect.properties.template
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
#

{% set kr_props = env_to_props('KSQL_CONNECT_', '') -%}
{% for name, value in kr_props.iteritems() -%}
{% for name, value in kr_props.items() -%}
{{name}}={{value}}
{% endfor -%}
4 changes: 2 additions & 2 deletions config/ksqldb-server.properties.template
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
#

{% set kr_props = env_to_props('KSQL_', '') -%}
{% for name, value in kr_props.iteritems() -%}
{% for name, value in kr_props.items() -%}
{{name}}={{value}}
{% endfor -%}
{% endfor -%}

0 comments on commit 7fe7e07

Please sign in to comment.