Skip to content

Commit db46a37

Browse files
authored
Merge pull request #79687 from yegu-ms/master
PR change #32310
2 parents 84f9465 + d4789e1 commit db46a37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-app-configuration/use-feature-flags-dotnet-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ms.custom: mvc
1919
#Customer intent: I want to control feature availability in my app by using the .NET Core Feature Manager library.
2020
---
2121

22-
# Tutorial: Use feature flags in a .NET Core app
22+
# Tutorial: Use feature flags in an ASP.NET Core app
2323

2424
The .NET Core Feature Management libraries provide idiomatic support for implementing feature flags in a .NET or ASP.NET Core application. These libraries allow you to declaratively add feature flags to your code so that you don't have to write all the `if` statements for them manually.
2525

@@ -107,7 +107,7 @@ Feature flag values are expected to change over time. By default, the feature ma
107107
config.AddAzureAppConfiguration(options => {
108108
options.Connect(settings["ConnectionStrings:AppConfig"])
109109
.UseFeatureFlags(featureFlagOptions => {
110-
featureFlagOptions.PollInterval = TimeSpan.FromSeconds(5);
110+
featureFlagOptions.PollInterval = TimeSpan.FromSeconds(300);
111111
});
112112
});
113113
```

0 commit comments

Comments
 (0)