Fixes bug
1128180
Change-Id: Ie63ef674b5e05fab659e675774a1b25cd57d4c41
# The DHCP agent will resync its state with Quantum to recover from any
# transient notification or rpc errors. The interval is number of
# seconds between attempts.
-# resync_interval = 30
+# resync_interval = 5
# The DHCP requires that an inteface driver be set. Choose the one that best
# matches you plugin.
class DhcpAgent(object):
OPTS = [
- cfg.IntOpt('resync_interval', default=30,
+ cfg.IntOpt('resync_interval', default=5,
help=_("Interval to resync.")),
cfg.StrOpt('dhcp_driver',
default='quantum.agent.linux.dhcp.Dnsmasq',