Change the default agent_heartbeat_expiry to 90s

By default, trove guest agent is sending health heartbeat msg for every
60s, so agent_heartbeat_expiry should be bigger than that.

Change-Id: I348a82aa948079b7bba5c172b8d57d5f5dee28a0
This commit is contained in:
Lingxian Kong 2021-02-15 10:29:24 +13:00
parent 9c2e0bf3a0
commit 5640a61acb
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ common_opts = [
cfg.IntOpt('agent_heartbeat_time', default=10,
help='Maximum time (in seconds) for the Guest Agent to reply '
'to a heartbeat request.'),
cfg.IntOpt('agent_heartbeat_expiry', default=60,
cfg.IntOpt('agent_heartbeat_expiry', default=90,
help='Time (in seconds) after which a guest is considered '
'unreachable'),
cfg.IntOpt('num_tries', default=3,