[Fullstack] Use string for global_physnet_mtu config option

This was added in Ia838d2a661c5098f90b58b2cb31557f2ebf78868 and breaks
config parser with python3

Closes-Bug: #1783095
Change-Id: I1cd054edb32e7ccf3bd3a356ed535a4a6003a9a1
This commit is contained in:
Bernard Cafarelli 2018-07-20 17:47:00 +02:00
parent 2dd5e21310
commit 3d06c63e74
No known key found for this signature in database
GPG Key ID: D148244A3C2462BD
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class NeutronConfigFixture(ConfigFixture):
'service_plugins': env_desc.service_plugins,
'auth_strategy': 'noauth',
'debug': 'True',
'global_physnet_mtu': env_desc.global_mtu,
'global_physnet_mtu': str(env_desc.global_mtu),
'agent_down_time': str(env_desc.agent_down_time),
'transport_url':
'rabbit://%(user)s:%(password)s@%(host)s:5672/%(vhost)s' %