Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Prefix background process desc
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Sep 13, 2023
1 parent 1976def commit 7f485e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/util/task_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,4 +385,4 @@ async def wrapper() -> None:

self._running_tasks.add(task.id)
await self.update_task(task.id, status=TaskStatus.ACTIVE)
run_as_background_process(task.action, wrapper)
run_as_background_process(f"task-{task.action}", wrapper)

0 comments on commit 7f485e2

Please sign in to comment.