Skip to content

Commit

Permalink
Increase time span for ActionBlock (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
oguzhankoral authored Sep 11, 2024
1 parent 7e4125c commit 53522a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DUI3/Speckle.Connectors.DUI/Bridge/BrowserBridge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public void AssociateWithBinding(IBinding binding)
new ExecutionDataflowBlockOptions
{
MaxDegreeOfParallelism = 1000,
CancellationToken = new CancellationTokenSource(TimeSpan.FromHours(3)).Token // Not sure we need such a long time. //TODO: This token source is not disposed....
CancellationToken = new CancellationTokenSource(TimeSpan.FromDays(10000)).Token // Do not change the timespan. This time defines the session time that we enable for user.
}
);

Expand Down

0 comments on commit 53522a8

Please sign in to comment.