We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05196e6 commit dc54b45Copy full SHA for dc54b45
docker/docker-entrypoint.sh
@@ -20,6 +20,9 @@ COMMON_CONF_FILE="${FLUSS_HOME}/conf/common.yaml"
20
prepare_configuration() {
21
additional_conf_file="${FLUSS_HOME}/conf/$1"
22
23
+ # backward compatability: allow to use old [coordinator|tablet-server].host option in FLUSS_PROPERTIES
24
+ sed -i '/bind.listeners:/d' "${COMMON_CONF_FILE}" "$additional_conf_file"
25
+
26
if [ -n "${FLUSS_PROPERTIES}" ]; then
27
# copy over all configuration options of FLUSS_PROPERTIES to the common and the additional configuration file
28
# since we cannot tell which configuration options are specific and which are not
0 commit comments