[qos] _validate_create_network_callback return in no network

It seems that _validate_create_network_callback notified without
network_id in payload, to avoid issues in such case return.

Change-Id: I15d22e0e2b4bf3e4f882b521bcd6a13f84e4feed
Closes-Bug: #2008912
This commit is contained in:
elajkat 2023-03-02 09:58:53 +01:00 committed by Rodolfo Alonso
parent cbb89fdb14
commit ec4bfb91f0
1 changed files with 2 additions and 2 deletions

View File

@ -610,9 +610,9 @@ class QoSPlugin(qos.QoSPluginBase):
network_id = payload.resource_id
network = network_object.Network.get_object(context, id=network_id)
policy_id = network.qos_policy_id
if policy_id is None:
if not network or not getattr(network, 'qos_policy_id', None):
return
policy_id = network.qos_policy_id
policy = policy_object.QosPolicy.get_object(
context.elevated(), id=policy_id)