From f72b0e9a3e29b2c77a9b2e40d7d17e65ce354749 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 25 Oct 2024 14:09:49 +0900 Subject: [PATCH] Fix inconsistent default value type The share_server_migration_timeout option is an integer option so its default value should be an integer. Change-Id: I20a3e8cc8d6b7197d130b5c300f86f5bae2d50db --- manila_tempest_tests/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manila_tempest_tests/config.py b/manila_tempest_tests/config.py index dc161002..532d2a52 100644 --- a/manila_tempest_tests/config.py +++ b/manila_tempest_tests/config.py @@ -322,7 +322,7 @@ ShareGroup = [ help="Time to wait for share backup before " "timing out (seconds)."), cfg.IntOpt("share_server_migration_timeout", - default="1500", + default=1500, help="Time to wait for share server migration before " "timing out (seconds)."), cfg.StrOpt("default_share_type_name",