Skip to content

Commit f8c7dc9

Browse files
committed
Fix Issue 584
1 parent ed8e837 commit f8c7dc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Polly.Shared/Registry/PolicyRegistry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class PolicyRegistry : IPolicyRegistry<string>
1818
/// A registry of policy policies with <see cref="System.String"/> keys.
1919
/// </summary>
2020
/// <param name="registry">a dictionary containing keys and policies used for testing.</param>
21-
internal PolicyRegistry(IDictionary<string, IsPolicy> registry = null) => _registry = registry ?? new ConcurrentDictionary<string, IsPolicy>();
21+
public PolicyRegistry(IDictionary<string, IsPolicy> registry = null) => _registry = registry ?? new ConcurrentDictionary<string, IsPolicy>();
2222

2323
/// <summary>
2424
/// Total number of policies in the registry.

0 commit comments

Comments
 (0)