You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by je...@apache.org on 2019/10/21 04:05:32 UTC

[pulsar] branch revert-4974-fix/pyyaml-waring created (now ad697f4)

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

jerrypeng pushed a change to branch revert-4974-fix/pyyaml-waring
in repository https://gitbox.apache.org/repos/asf/pulsar.git.


      at ad697f4  Revert "Add default loader for latest pyyaml (#4974)"

This branch includes the following new commits:

     new ad697f4  Revert "Add default loader for latest pyyaml (#4974)"

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[pulsar] 01/01: Revert "Add default loader for latest pyyaml (#4974)"

Posted by je...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jerrypeng pushed a commit to branch revert-4974-fix/pyyaml-waring
in repository https://gitbox.apache.org/repos/asf/pulsar.git

commit ad697f45b9e9abb617e6ee9759a121f333916f0f
Author: Boyang Jerry Peng <je...@gmail.com>
AuthorDate: Sun Oct 20 21:05:19 2019 -0700

    Revert "Add default loader for latest pyyaml (#4974)"
    
    This reverts commit d49e61e0907c30d71184da4eb769c9761456a80f.
---
 docker/pulsar/scripts/gen-yml-from-env.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/pulsar/scripts/gen-yml-from-env.py b/docker/pulsar/scripts/gen-yml-from-env.py
index 6bddcdf..1aa16b4 100755
--- a/docker/pulsar/scripts/gen-yml-from-env.py
+++ b/docker/pulsar/scripts/gen-yml-from-env.py
@@ -46,7 +46,7 @@ if len(sys.argv) < 2:
 conf_files = sys.argv[1:]
 
 for conf_filename in conf_files:
-    conf = yaml.load(open(conf_filename), Loader=yaml.FullLoader)
+    conf = yaml.load(open(conf_filename))
 
     # update the config
     modified = False