From 6f64130aea790fdfa868b78a39ad1988e05f7cd7 Mon Sep 17 00:00:00 2001 From: Elena Mamontova Date: Fri, 16 Sep 2016 16:12:03 +0300 Subject: [PATCH] Ticket 37. The ReadTime() call for 'ChangePolicyTimeout' field in the if() construction added in the RestoreTariff() function. --- projects/stargazer/plugins/store/files/file_store.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/projects/stargazer/plugins/store/files/file_store.cpp b/projects/stargazer/plugins/store/files/file_store.cpp index 71f57071..0c48722c 100644 --- a/projects/stargazer/plugins/store/files/file_store.cpp +++ b/projects/stargazer/plugins/store/files/file_store.cpp @@ -1470,6 +1470,14 @@ if (conf.ReadString("ChangePolicy", &str, "allow") < 0) td->tariffConf.changePolicy = TARIFF::ALLOW; else td->tariffConf.changePolicy = TARIFF::StringToChangePolicy(str); + +if (conf.ReadTime("ChangePolicyTimeout", &td->tariffConf.changePolicyTimeout, 0) < 0) + { + STG_LOCKER lock(&mutex); + errorStr = "Cannot read tariff " + tariffName + ". Parameter ChangePolicyTimeout"; + printfd(__FILE__, "FILES_STORE::RestoreTariff - changepolicytimeout read failed for tariff '%s'\n", tariffName.c_str()); + return -1; + } return 0; } //----------------------------------------------------------------------------- -- 2.43.2