Skip to content

Commit

Permalink
DLM::LifecyclePolicy CreateRule.Interval: allow 1 as a valid interval (
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfirtion authored Apr 23, 2024
1 parent 4eb8e8f commit 68f19e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion troposphere/validators/dlm.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def validate_interval(interval):
Property: CreateRule.Interval
"""

VALID_INTERVALS = (2, 3, 4, 6, 8, 12, 24)
VALID_INTERVALS = (1, 2, 3, 4, 6, 8, 12, 24)

if interval not in VALID_INTERVALS:
raise ValueError(
Expand Down

0 comments on commit 68f19e7

Please sign in to comment.