Skip to content

Commit

Permalink
Remove suspicious code fragment in ActorMaterializer.cs (#6216)
Browse files Browse the repository at this point in the history
Remove duplicate SubscriptionTimeoutSettings field checking and check missing MaxFixedBufferSize field
  • Loading branch information
06b committed Oct 28, 2022
1 parent 78d753f commit 471922a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Akka.Streams/ActorMaterializer.cs
Expand Up @@ -623,7 +623,7 @@ public override bool Equals(object obj)
s.SyncProcessingLimit == SyncProcessingLimit &&
s.IsFuzzingMode == IsFuzzingMode &&
s.IsAutoFusing == IsAutoFusing &&
s.SubscriptionTimeoutSettings == SubscriptionTimeoutSettings &&
s.MaxFixedBufferSize == MaxFixedBufferSize &&
s.StreamRefSettings == StreamRefSettings;
}

Expand Down

0 comments on commit 471922a

Please sign in to comment.