resource: Fix next_zmq_port_range using bvci file name

Change-Id: I293b7de1066ea69ccb0e495a69602ed56810018d
This commit is contained in:
Pau Espin Pedrol 2020-12-17 15:51:36 +01:00
parent 7ecfaa6a0f
commit 2c92c2e9be
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ class ResourcesPool(log.Origin):
# Allocate continuous num_ports port between 2000 and 2200. returns base port.
# Assumption: base port is always an odd number.
num_ports = num_ports if num_ports % 2 == 0 else num_ports + 1
base_port = self.next_persistent_value('bvci', '2000', schema.uint16,
base_port = self.next_persistent_value('zmq_port', '2000', schema.uint16,
lambda x: str(int(x)+num_ports) if int(x) < 2200 - num_ports else '2000', origin)
return int(base_port)