Skip to content

Commit

Permalink
Fix missing async call after merge
Browse files Browse the repository at this point in the history
SDESK-7497
  • Loading branch information
eos87 committed Mar 10, 2025
1 parent 0790fc6 commit a644b37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/planning/planning/planning_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ async def on_created(self, docs: list[PlanningResourceModel]):
event_ids=get_related_event_ids_for_planning(doc_dict, "primary"), # Event IDs for primary events
)

self._update_event_history(doc_dict)
await self._update_event_history(doc_dict)
await signals.planning_created.send([doc_dict])

first_primary_event_id = get_first_related_event_id_for_planning(doc_dict, "primary")
Expand Down

0 comments on commit a644b37

Please sign in to comment.