Skip to content

Commit ac57222

Browse files
committed
update
1 parent 0130378 commit ac57222

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

articles/azure-app-configuration/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,8 @@
208208
href: howto-timewindow-filter-aspnet-core.md
209209
- name: JavaScript
210210
href: howto-timewindow-filter-javascript.md
211+
- name: Go Gin
212+
href: howto-timewindow-filter-go.md
211213
- name: Roll out features to targeted audience
212214
items:
213215
- name: Overview

articles/azure-app-configuration/howto-timewindow-filter-go.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,12 @@ The example used in this article is based on the Go Gin web application introduc
2121

2222
- Create a [Go Gin web application with a feature flag](./quickstart-feature-flag-go-gin.md).
2323
- [Add a time window filter to the feature flag](./howto-timewindow-filter.md)
24-
- [Azure App Configuration Go provider](https://pkg.go.dev/github.com/Azure/AppConfiguration-GoProvider/azureappconfiguration) v1.1.0-beta.1 or later.
2524

2625
## Use the time window filter
2726

28-
You've added a time window filter for your *Beta* feature flag in the prerequisites. Next, you'll use the feature flag with the time window filter in your Go Gin web application.
27+
You added a time window filter for your *Beta* feature flag in the prerequisites. Next, you'll use the feature flag with the time window filter in your Go Gin web application.
2928

30-
The Go Feature Management library automatically supports built-in feature filters, including the time window filter. When you create a feature manager with the Azure App Configuration provider, time window filters are evaluated automatically without requiring additional configuration.
29+
When you create a feature manager, the built-in feature filters are automatically added to its feature filter collection
3130

3231
The existing code from the quickstart already handles time window filters through the feature manager:
3332

@@ -38,7 +37,7 @@ if err != nil {
3837
log.Fatalf("Error creating feature flag provider: %v", err)
3938
}
4039

41-
// Create feature manager (automatically supports built-in filters including TimeWindowFilter)
40+
// Create feature manager (supports built-in filters including TimeWindowFilter)
4241
featureManager, err := featuremanagement.NewFeatureManager(featureFlagProvider, nil)
4342
if err != nil {
4443
log.Fatalf("Error creating feature manager: %v", err)

0 commit comments

Comments
 (0)