Skip to content

Commit

Permalink
Fix PipelineNameComparer example in documentation snippet
Browse files Browse the repository at this point in the history
Addresses App-vNext#1926

In the Complex Pipeline Keys documenation example:

https://www.pollydocs.org/advanced/dependency-injection.html#complex-pipeline-keys

PipelineNameComparer.GetHashCode takes the InstanceName into account, but shouldn't. This fixes that line in the documentation.
  • Loading branch information
jwagon committed Jan 26, 2024
1 parent 6470af3 commit e0333c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Snippets/Docs/DependencyInjection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public sealed class PipelineNameComparer : IEqualityComparer<MyPipelineKey>
{
public bool Equals(MyPipelineKey x, MyPipelineKey y) => x.PipelineName == y.PipelineName;

public int GetHashCode(MyPipelineKey obj) => (obj.PipelineName, obj.InstanceName).GetHashCode();
public int GetHashCode(MyPipelineKey obj) => obj.PipelineName.GetHashCode();
}

#endregion
Expand Down

0 comments on commit e0333c3

Please sign in to comment.