Skip to content

Commit

Permalink
add timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
marcindsobczak committed Jan 9, 2025
1 parent 7e0c53c commit 9a20a18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ internal void ScheduleSyncServe<TReq, TRes>(TReq request, Func<TReq, Cancellatio

internal void ScheduleBackgroundTask<TReq>(TReq request, Func<TReq, CancellationToken, ValueTask> fulfillFunc)
{
backgroundTaskScheduler.ScheduleTask((request, fulfillFunc), BackgroundTaskFailureHandlerValueTask);
backgroundTaskScheduler.ScheduleTask((request, fulfillFunc), BackgroundTaskFailureHandlerValueTask, Synchronization.Timeouts.Eth);
}

// I just don't want to create a closure.. so this happens.
Expand Down

0 comments on commit 9a20a18

Please sign in to comment.