summaryrefslogtreecommitdiff
path: root/src/components/policy/policy_regular/include/policy/policy_table
diff options
context:
space:
mode:
authorAKalinich-Luxoft <AKalinich@luxoft.com>2017-06-20 13:03:51 +0300
committerAKalinich-Luxoft <AKalinich@luxoft.com>2017-06-20 13:03:51 +0300
commitbbb0146f5fecf0acc2e91b6546ce034c809923df (patch)
treeb70ab6286bc3007d3d6d4e5c29153528985602ae /src/components/policy/policy_regular/include/policy/policy_table
parent817052ffe35991d6927e9176528821323b4e6812 (diff)
downloadsdl_core-bbb0146f5fecf0acc2e91b6546ce034c809923df.tar.gz
Fix seconds_between_retries upper bound for regular policy
Fixed seconds_between_retries upper bound parameter for regular policy. According to requirements maximum size for this param is 5. In this commit: - Fixed SecondsBetweenRetries template parameter for regular policy as it's done for external policy
Diffstat (limited to 'src/components/policy/policy_regular/include/policy/policy_table')
-rw-r--r--src/components/policy/policy_regular/include/policy/policy_table/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/policy/policy_regular/include/policy/policy_table/types.h b/src/components/policy/policy_regular/include/policy/policy_table/types.h
index 66fddee592..b7b3c88a74 100644
--- a/src/components/policy/policy_regular/include/policy/policy_table/types.h
+++ b/src/components/policy/policy_regular/include/policy/policy_table/types.h
@@ -79,7 +79,7 @@ typedef uint8_t NumberOfNotificationsType;
typedef Map<Integer<NumberOfNotificationsType, 0, 255>, 0, 6>
NumberOfNotificationsPerMinute;
-typedef Array<Integer<uint16_t, 1, 1000>, 0, 10> SecondsBetweenRetries;
+typedef Array<Integer<uint16_t, 1, 1000>, 0, 5> SecondsBetweenRetries;
typedef Map<MessageString, 0, 500> Languages;