[OVN] Bump up transaction timeout for functional tests

We still can see occasional failures because of timeouts
in the test_ovn_db_sync tests, like 1 failure per week.

As per agreement during last IRC meeting we decided to
bump up the functional tests timout from 15 seconds to 30 seconds,
because we're still pretty behind the default value of 180 seconds.

Change-Id: Ib20cdd0bb7d24795c8bd5c84c6143000b9922b4d
Related-Bug: 1868110
This commit is contained in:
Maciej Józefczyk 2020-05-06 17:44:11 +02:00
parent 5c0c234d04
commit c9eeb5debd
1 changed files with 2 additions and 2 deletions

View File

@ -261,10 +261,10 @@ class TestOVNFunctionalBase(test_plugin.Ml2PluginV2TestCase,
set_cfg('ovn_sb_ca_cert', self.ovsdb_server_mgr.ca_cert, 'ovn')
# NOTE(mjozefcz): We can find occasional functional test
# failures because of low timeout value - set it to 15
# failures because of low timeout value - set it to 30
# seconds, should be enought. More info: 1868110
cfg.CONF.set_override(
'ovsdb_connection_timeout', 15,
'ovsdb_connection_timeout', 30,
'ovn')
class TriggerCls(mock.MagicMock):