NSX|V3: ensure that rate limits are disable for the DHCP profile

The rate limits should be disabled as this is not supported in KVM.
This is where the DHCP agent runs.

Change-Id: Ib45bc674a5f8956115f9cc7afb119b2edaab6c94
Closes-bug: #1515183
This commit is contained in:
Gary Kotton 2015-11-11 02:41:14 -08:00
parent 6fc16531c5
commit 11486c0520
2 changed files with 2 additions and 0 deletions

View File

@ -129,6 +129,7 @@ class SwitchingProfile(AbstractRESTResource):
'server_block_enabled': False
}
rate_limits = {
'enabled': False,
'rx_broadcast': 0,
'tx_broadcast': 0,
'rx_multicast': 0,

View File

@ -145,6 +145,7 @@ class TestSwitchingProfileTestCase(nsxlib_testcase.NsxClientTestCase):
'server_block_enabled': False
},
'rate_limits': {
'enabled': False,
'rx_broadcast': 0,
'tx_broadcast': 0,
'rx_multicast': 0,