Allow delivery delay to be 0 (#33241)
This commit is contained in:
parent
2ece86fba1
commit
e822271d1a
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ def update_sqs_queue(queue,
|
|||
|
||||
|
||||
def set_queue_attribute(queue, attribute, value, check_mode=False):
|
||||
if not value:
|
||||
if not value and value != 0:
|
||||
return False
|
||||
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue