This is an automated email from the ASF dual-hosted git repository.
sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new ed80a93 Do not apply env values to conf/pulsar_env.sh and
conf/bkenv.sh implicitly when running apply-config-from-env.py. (#6579)
ed80a93 is described below
commit ed80a936a43faf89d5bb300715e018fd17af75c7
Author: Yang Yang <[email protected]>
AuthorDate: Thu Mar 26 14:31:31 2020 +0800
Do not apply env values to conf/pulsar_env.sh and conf/bkenv.sh implicitly
when running apply-config-from-env.py. (#6579)
---
docker/pulsar/scripts/apply-config-from-env.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docker/pulsar/scripts/apply-config-from-env.py
b/docker/pulsar/scripts/apply-config-from-env.py
index d37406d..23d3d0f 100755
--- a/docker/pulsar/scripts/apply-config-from-env.py
+++ b/docker/pulsar/scripts/apply-config-from-env.py
@@ -32,7 +32,7 @@ if len(sys.argv) < 2:
sys.exit(1)
# Always apply env config to env scripts as well
-conf_files = ['conf/pulsar_env.sh', 'conf/bkenv.sh'] + sys.argv[1:]
+conf_files = sys.argv[1:]
PF_ENV_PREFIX = 'PULSAR_PREFIX_'