From a1c3e3386ff3bf9fd82f020af8fd29cea82e6bc0 Mon Sep 17 00:00:00 2001 From: Andrew Date: Wed, 7 Aug 2024 20:28:13 -0400 Subject: [PATCH 1/3] Fix schedules creation fail due to missing action ID --- app/classes/shared/tasks.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/classes/shared/tasks.py b/app/classes/shared/tasks.py index da9735a9..ebd8aadf 100644 --- a/app/classes/shared/tasks.py +++ b/app/classes/shared/tasks.py @@ -341,7 +341,7 @@ class TasksManager: job_data["cron_string"], job_data["parent"], job_data["delay"], - job_data["action_id"], + job_data.get("action_id", None), ) # Checks to make sure some doofus didn't actually make the newly @@ -372,7 +372,7 @@ class TasksManager: "system" ), "command": job_data["command"], - "action_id": job_data["action_id"], + "action_id": job_data.get("action_id", None), } ], ) @@ -399,7 +399,7 @@ class TasksManager: "system" ), "command": job_data["command"], - "action_id": job_data["action_id"], + "action_id": job_data.get("action_id", None), } ], ) @@ -416,7 +416,7 @@ class TasksManager: "system" ), "command": job_data["command"], - "action_id": job_data["action_id"], + "action_id": job_data.get("action_id", None), } ], ) @@ -436,7 +436,7 @@ class TasksManager: "system" ), "command": job_data["command"], - "action_id": job_data["action_id"], + "action_id": job_data.get("action_id", None), } ], ) @@ -529,7 +529,7 @@ class TasksManager: "system" ), "command": job_data["command"], - "action_id": job_data["action_id"], + "action_id": job_data.get("action_id", None), } ], ) @@ -553,7 +553,7 @@ class TasksManager: "system" ), "command": job_data["command"], - "action_id": job_data["action_id"], + "action_id": job_data.get("action_id", None), } ], ) @@ -570,7 +570,7 @@ class TasksManager: "system" ), "command": job_data["command"], - "action_id": job_data["action_id"], + "action_id": job_data.get("action_id", None), } ], ) @@ -590,7 +590,7 @@ class TasksManager: "system" ), "command": job_data["command"], - "action_id": job_data["action_id"], + "action_id": job_data.get("action_id", None), } ], ) From 3ec43e45baec931c9cf73c39cbe78ca320f8fa00 Mon Sep 17 00:00:00 2001 From: Zedifus Date: Thu, 8 Aug 2024 20:36:26 +0100 Subject: [PATCH 2/3] Update changelog !791 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f57fc7c6..a83aab86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ### New features TBD ### Bug fixes -TBD +- Fix schedules creation fail due to missing action ID ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/791)) ### Tweaks TBD ### Lang From 3da6d6f7402f6715eb70a27708d59149a5b20a0d Mon Sep 17 00:00:00 2001 From: Zedifus Date: Thu, 8 Aug 2024 20:37:30 +0100 Subject: [PATCH 3/3] Close changelog 4.4.3 --- CHANGELOG.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a83aab86..05b9576d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,7 @@ # Changelog -## --- [4.4.3] - 2024/TBD -### New features -TBD +## --- [4.4.3] - 2024/08/08 ### Bug fixes - Fix schedules creation fail due to missing action ID ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/791)) -### Tweaks -TBD -### Lang -TBD

## --- [4.4.2] - 2024/08/07