mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-25 03:35:21 +01:00
Fix pythom yaml load to safe_load
Signed-off-by: DQ <dengq@vmware.com>
This commit is contained in:
parent
0a38ae1843
commit
234b29e170
@ -81,7 +81,7 @@ def parse_versions():
|
||||
if not versions_file_path.is_file():
|
||||
return {}
|
||||
with open('versions') as f:
|
||||
versions = yaml.load(f)
|
||||
versions = yaml.safe_load(f)
|
||||
return versions
|
||||
|
||||
|
||||
@ -92,7 +92,7 @@ def parse_yaml_config(config_file_path, with_notary, with_trivy, with_chartmuseu
|
||||
'''
|
||||
|
||||
with open(config_file_path) as f:
|
||||
configs = yaml.load(f)
|
||||
configs = yaml.safe_load(f)
|
||||
|
||||
config_dict = {
|
||||
'portal_url': 'http://portal:8080',
|
||||
|
Loading…
Reference in New Issue
Block a user