From fad8e4d2cdaa73a3bea72d5b926e5d837427bcbf Mon Sep 17 00:00:00 2001 From: Bernard Cafarelli Date: Fri, 22 Jun 2018 17:44:27 +0200 Subject: [PATCH] [Fullstack] Use string for api_worker config option Same fix as in Iae6a559451ab03f4a5410626e50ff2c0aa634aea, this causes tests to fail at configuration load with Python 3 Change-Id: I8f1131bf98e38c716925c562fb95d94bc341cbb0 --- neutron/tests/fullstack/resources/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/tests/fullstack/resources/config.py b/neutron/tests/fullstack/resources/config.py index db601ae2c81..b550470997b 100644 --- a/neutron/tests/fullstack/resources/config.py +++ b/neutron/tests/fullstack/resources/config.py @@ -68,7 +68,7 @@ class NeutronConfigFixture(ConfigFixture): 'password': rabbitmq_environment.password, 'host': rabbitmq_environment.host, 'vhost': rabbitmq_environment.vhost}, - 'api_workers': 2, + 'api_workers': '2', }, 'database': { 'connection': connection,