Skip to content

Commit

Permalink
lower flush rate
Browse files Browse the repository at this point in the history
  • Loading branch information
Wojciech Turowicz committed Nov 8, 2023
1 parent e630317 commit c1b6f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Orleans.Streaming.Grains/Grains/TransactionGrain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public override async Task OnActivateAsync(CancellationToken cancellationToken)
await PersistAsync();
}

var timeout = _options.RetryTimeout / 5;
var timeout = _options.RetryTimeout / 3;

_ = RegisterTimer(FlushTimerAsync, null, timeout, timeout);

Expand Down

0 comments on commit c1b6f9d

Please sign in to comment.