We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e7f8b0 commit 2dd4ed8Copy full SHA for 2dd4ed8
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs
@@ -25,6 +25,7 @@ public class AzureAppConfigurationOptions
25
private const int MaxRetries = 2;
26
private static readonly TimeSpan MaxRetryDelay = TimeSpan.FromMinutes(1);
27
private static readonly TimeSpan NetworkTimeout = TimeSpan.FromSeconds(10);
28
+ private static readonly KeyValueSelector DefaultQuery = new KeyValueSelector { KeyFilter = KeyFilter.Any, LabelFilter = LabelFilter.Null };
29
30
private List<KeyValueWatcher> _individualKvWatchers = new List<KeyValueWatcher>();
31
private List<KeyValueWatcher> _ffWatchers = new List<KeyValueWatcher>();
0 commit comments