Prevent RXTX factor from being updated on network queue

This patch fixes an issue where the RXTX factor was being updated
by mistake in the process of creating a new queue.

Change-Id: I61a6f1b65f02928760681b31442cb92777164455
(cherry picked from commit e20c047a1e)
This commit is contained in:
Aaron Rosen 2015-06-04 12:41:54 -07:00
parent 5cad7002d2
commit 1c7b062b8e
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ class QoSDbMixin(qos.QueuePluginBase):
return queues[0]['queue_id']
# get the size of the queue we want to create
queue_to_create = self._get_qos_queue(
queue_to_create = self.get_qos_queue(
context, network_queue_id[0]['queue_id'])
else: