Workaround for oslo_serialization bug 1515231

We shall not use jsonutils.load.
Instead, read the file and the use jsonutils.loads.

Change-Id: I3df9f8ecf477fa52a77990abfe83dd43326b61b1
This commit is contained in:
Salvatore Orlando 2021-11-30 22:41:56 -08:00 committed by Salvatore Orlando
parent 6afebbca57
commit cb72125ef7
1 changed files with 4 additions and 2 deletions

View File

@ -245,7 +245,8 @@ def patch_routers_without_gateway(resource, event, trigger, **kwargs):
# Open state file, if exists, read data
try:
with open(state_filename) as f:
state_data = jsonutils.load(f)
data = f.read()
state_data = jsonutils.loads(data)
except FileNotFoundError:
LOG.debug("State file not created yet")
state_data = {}
@ -316,7 +317,8 @@ def restore_routers_without_gateway(resource, event, trigger, **kwargs):
# Fail if file does not exist
try:
with open(state_filename) as f:
state_data = jsonutils.load(f)
data = f.read()
state_data = jsonutils.loads(data)
except FileNotFoundError:
LOG.error("State file %s was not found. Aborting", state_filename)
sys.exit(1)