Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
[tests] fix yaml load warning (elastic#1522)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebuildy authored and jmlrt committed Jan 5, 2022
1 parent ee2cec6 commit 5a7c765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def helm_template(config):
with open(temp.name, "w") as values:
values.write(config)
helm_cmd = "helm template release-name -f {0} ./".format(temp.name)
result = yaml.load_all(check_output(helm_cmd.split()))
result = yaml.load_all(check_output(helm_cmd.split()), Loader=yaml.FullLoader)

results = {}
for r in result:
Expand Down

0 comments on commit 5a7c765

Please sign in to comment.