From ab573c5661ff1ac2e281af9ee1b49ceadc0ccf00 Mon Sep 17 00:00:00 2001 From: Kambiz Aghaiepour Date: Fri, 8 Nov 2024 06:45:04 -0500 Subject: [PATCH] Fix a notification issue with extend Notifications were not getting properly reset. This should fix that. Fixes: https://github.com/redhat-performance/quads/issues/551 Change-Id: I5982505cfeaa7d82f354dfbc8082813c6667683b --- src/quads/cli/cli.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/quads/cli/cli.py b/src/quads/cli/cli.py index 3eff643f..792c0b2a 100644 --- a/src/quads/cli/cli.py +++ b/src/quads/cli/cli.py @@ -656,10 +656,10 @@ def action_extend(self): if not check: data = { - "one_day": False, - "three_days": False, - "five_days": False, - "seven_days": False, + "one_day": "False", + "three_days": "False", + "five_days": "False", + "seven_days": "False", } try: self.quads.update_notification(schedules[0].assignment.notification.id, data)