There was an error while loading. Please reload this page.
1 parent 1687244 commit f5553a2Copy full SHA for f5553a2
docker/pulsar/Dockerfile
@@ -81,7 +81,7 @@ RUN apt-get -y --purge autoremove \
81
&& apt-get clean \
82
&& rm -rf /var/lib/apt/lists/*
83
84
-RUN pip3 install pyyaml==5.4.1
+RUN pip3 install pyyaml==6.0.1
85
86
# Pulsar currently writes to the below directories, assuming the default configuration.
87
# Note that number 4 is the reason that pulsar components need write access to the /pulsar directory.
docker/pulsar/scripts/gen-yml-from-env.py
@@ -61,7 +61,7 @@
61
conf_files = sys.argv[1:]
62
63
for conf_filename in conf_files:
64
- conf = yaml.load(open(conf_filename))
+ conf = yaml.load(open(conf_filename), Loader=yaml.FullLoader)
65
66
# update the config
67
modified = False
0 commit comments