Skip to content

Commit

Permalink
Use fixed grain id
Browse files Browse the repository at this point in the history
  • Loading branch information
ReubenBond committed Mar 7, 2024
1 parent d03bd0e commit 9844f5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Tester/StatelessWorkerActivationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public StatelessWorkerActivationTests(Fixture fixture)
[Fact, TestCategory("BVT"), TestCategory("StatelessWorker")]
public async Task SingleWorkerInvocationUnderLoad()
{
var workerGrain = _fixture.GrainFactory.GetGrain<IStatelessWorkerScalingGrain>(Random.Shared.Next());
var workerGrain = _fixture.GrainFactory.GetGrain<IStatelessWorkerScalingGrain>(0);

for (var i = 0; i < 100; i++)
{
Expand Down

0 comments on commit 9844f5a

Please sign in to comment.