[backend/queue] Set background-task queue timeout to 15 minutes (ISH-532)
This commit is contained in:
parent
c4cf6f5008
commit
300c7d661c
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ namespace Iceshrimp.Backend.Core.Queues;
|
|||
|
||||
public class BackgroundTaskQueue(int parallelism)
|
||||
: PostgresJobQueue<BackgroundTaskJobData>("background-task", BackgroundTaskQueueProcessorDelegateAsync,
|
||||
parallelism, TimeSpan.FromSeconds(60))
|
||||
parallelism, TimeSpan.FromMinutes(15))
|
||||
{
|
||||
private static async Task BackgroundTaskQueueProcessorDelegateAsync(
|
||||
Job job,
|
||||
|
|
Loading…
Add table
Reference in a new issue