Merge "Use LOG.warning instead of deprecated LOG.warn"

This commit is contained in:
Zuul 2022-07-21 05:30:51 +00:00 committed by Gerrit Code Review
commit c4101e3323
3 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,7 @@ apiVersion: v1
appVersion: v1.0.0
description: OpenStack-Helm Keystone
name: keystone
version: 0.2.26
version: 0.2.27
home: https://docs.openstack.org/keystone/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Keystone/OpenStack_Project_Keystone_vertical.png
sources:

View File

@ -88,7 +88,7 @@ def read_from_files():
if len(list(keys)):
LOG.debug("Keys read from files: %s", keys)
else:
LOG.warn("No keys were read from files.")
LOG.warning("No keys were read from files.")
return data

View File

@ -42,4 +42,5 @@ keystone:
- 0.2.24 Remove unused admin port in keystone
- 0.2.25 Migrated CronJob resource to batch/v1 API version & PodDisruptionBudget to policy/v1
- 0.2.26 Add Xena and Yoga values overrides
- 0.2.27 Use LOG.warning instead of deprecated LOG.warn
...