File tree 1 file changed +2
-3
lines changed
src/core/Akka.Tests/Actor
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -283,8 +283,7 @@ await AwaitAssertAsync(async () =>
283
283
// assert that actor start count is still 10
284
284
Assert . Equal ( 12 , telemetry . ActorCreated ) ;
285
285
286
- // bug due to https://github.com/akkadotnet/akka.net/issues/6295 - all routees and the router start each time
287
- Assert . Equal ( 110 , telemetry . ActorRestarted ) ;
286
+ Assert . Equal ( 10 , telemetry . ActorRestarted ) ;
288
287
// assert no stops recorded
289
288
Assert . Equal ( 0 , telemetry . ActorStopped ) ;
290
289
} , RemainingOrDefault ) ;
@@ -296,7 +295,7 @@ await AwaitAssertAsync(async () =>
296
295
var telemetry = await subscriber . Ask < TelemetrySubscriber . GetTelemetry > ( TelemetrySubscriber . GetTelemetryRequest . Instance ) ;
297
296
// assert that actor start count is still 10
298
297
Assert . Equal ( 12 , telemetry . ActorCreated ) ;
299
- Assert . Equal ( 110 , telemetry . ActorRestarted ) ;
298
+ Assert . Equal ( 10 , telemetry . ActorRestarted ) ;
300
299
Assert . Equal ( 11 , telemetry . ActorStopped ) ;
301
300
} , RemainingOrDefault ) ;
302
301
}
You can’t perform that action at this time.
0 commit comments