Merge PR #33734 into master

* refs/pull/33734/head:
	mgr/cephadm: do not refresh daemon and device inventory as often

Reviewed-by: Michael Fritch <mfritch@suse.com>
This commit is contained in:
Sage Weil 2020-03-05 06:34:38 -06:00
commit 683fc0f80c

View File

@ -545,13 +545,13 @@ class CephadmOrchestrator(orchestrator.Orchestrator, MgrModule):
{
'name': 'device_cache_timeout',
'type': 'secs',
'default': 10 * 60,
'default': 30 * 60,
'desc': 'seconds to cache device inventory',
},
{
'name': 'daemon_cache_timeout',
'type': 'secs',
'default': 60,
'default': 10 * 60,
'desc': 'seconds to cache service (daemon) inventory',
},
{