Skip to content

Commit f8a3d5a

Browse files
authored
Merge pull request ceph#65955 from gbregman/main
mgr/cephadm: Increase the default expiration time for NVMEoF subsyste…
2 parents 097330b + cfb985d commit f8a3d5a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pybind/mgr/cephadm/tests/test_services.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ def test_nvmeof_config(self, _get_name, _run_cephadm, cephadm_module: CephadmOrc
496496
max_namespaces = 4096
497497
max_namespaces_per_subsystem = 512
498498
max_hosts_per_subsystem = 128
499-
subsystem_cache_expiration = 5
499+
subsystem_cache_expiration = 30
500500
force_tls = False
501501
502502
[gateway-logs]

src/python-common/ceph/deployment/service_spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1690,7 +1690,7 @@ def __init__(self,
16901690
max_namespaces: Optional[int] = 4096,
16911691
max_namespaces_per_subsystem: Optional[int] = 512,
16921692
max_hosts_per_subsystem: Optional[int] = 128,
1693-
subsystem_cache_expiration: Optional[int] = 5,
1693+
subsystem_cache_expiration: Optional[int] = 30,
16941694
force_tls: Optional[bool] = False,
16951695
server_key: Optional[str] = None,
16961696
server_cert: Optional[str] = None,

0 commit comments

Comments
 (0)