a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[backend/queue] Increase inbox job timeout to 120 seconds

+1 -1
+1 -1
Iceshrimp.Backend/Core/Queues/InboxQueue.cs
··· 11 11 namespace Iceshrimp.Backend.Core.Queues; 12 12 13 13 public class InboxQueue(int parallelism) 14 - : PostgresJobQueue<InboxJobData>("inbox", InboxQueueProcessorDelegateAsync, parallelism, TimeSpan.FromSeconds(60)) 14 + : PostgresJobQueue<InboxJobData>("inbox", InboxQueueProcessorDelegateAsync, parallelism, TimeSpan.FromSeconds(120)) 15 15 { 16 16 private static async Task InboxQueueProcessorDelegateAsync( 17 17 Job job,