Skip to content

Commit 2781ede

Browse files
committed
update
1 parent a3b4ddd commit 2781ede

File tree

2 files changed

+16
-27
lines changed

2 files changed

+16
-27
lines changed

articles/azure-app-configuration/quickstart-feature-flag-go-console.md

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
100100
"time"
101101

102102
"github.com/microsoft/Featuremanagement-Go/featuremanagement"
103-
"github.com/microsoft/Featuremanagement-Go/featuremanagement/providers/azappconfig"
103+
"github.com/microsoft/Featuremanagement-Go/featuremanagement/providers/azappconfig"
104104
)
105105

106106
func main() {
@@ -169,7 +169,7 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
169169
```
170170
---
171171

172-
1. The application will start monitoring the *Beta* feature flag and display its current state every 5 seconds:
172+
1. The application starts monitoring the *Beta* feature flag and displays its current state every 5 seconds:
173173

174174
```console
175175
Monitoring 'Beta' feature flag (press Ctrl+C to exit):
@@ -200,23 +200,17 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
200200

201201
[!INCLUDE[Azure App Configuration cleanup](../../includes/azure-app-configuration-cleanup.md)]
202202

203-
## Next steps
203+
## Related content
204204

205-
In this quickstart, you created a feature flag in Azure App Configuration and used it in a Go console application. The [Feature Management Go library](https://github.com/microsoft/FeatureManagement-Go) provides rich feature flag capabilities that integrate seamlessly with Azure App Configuration. For more features, continue to the following document.
205+
In this quickstart, you created a feature flag in Azure App Configuration and used it in a Go Gin web application. The [Feature Management Go library](https://github.com/microsoft/FeatureManagement-Go) provides feature flag capabilities that integrate seamlessly with Azure App Configuration.For more features, continue to the following document.
206206

207-
> [!div class="nextstepaction"]
208-
> [Go Feature Management reference](https://pkg.go.dev/github.com/microsoft/Featuremanagement-Go/featuremanagement)
207+
- [Go Feature Management reference](https://pkg.go.dev/github.com/microsoft/Featuremanagement-Go/featuremanagement)
209208

210209
While a feature flag allows you to activate or deactivate functionality in your app, you may want to customize a feature flag based on your app's logic. Feature filters allow you to enable a feature flag conditionally. For more information, continue to the following tutorial.
211210

212-
> [!div class="nextstepaction"]
213-
> [Enable conditional features with feature filters](./howto-feature-filters.md)
211+
- [Enable conditional features with feature filters](./howto-feature-filters.md)
214212

215213
Azure App Configuration offers built-in feature filters that enable you to activate a feature flag only during a specific period or to a particular targeted audience of your app. For more information, continue to the following tutorial.
216214

217-
> [!div class="nextstepaction"]
218-
> [Enable features on a schedule](./howto-timewindow-filter.md)
219-
220-
> [!div class="nextstepaction"]
221-
> [Roll out features to targeted audiences](./howto-targetingfilter.md)
222-
215+
- [Enable features on a schedule](./howto-timewindow-filter.md)
216+
- [Roll out features to targeted audiences](./howto-targetingfilter.md)

articles/azure-app-configuration/quickstart-feature-flag-go-gin.md

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,10 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
289289
appConfig: appConfig,
290290
}
291291

292-
// Setup Gin with default middleware (Logger and Recovery)
292+
// Set up Gin with default middleware (Logger and Recovery)
293293
r := gin.Default()
294294

295-
// Setup routes
295+
// Set up routes
296296
app.setupRoutes(r)
297297

298298
// Start server
@@ -323,7 +323,7 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
323323

324324
1. Select **Feature manager** and locate the *Beta* feature flag. Enable the flag by selecting the checkbox under **Enabled**.
325325

326-
1. Refresh the browser a few times. When the refresh interval time window passes, the page will show with updated content:
326+
1. Refresh the browser a few times. When the refresh interval time window passes, the page displays with updated content:
327327

328328
![Feature flag after enabled](./media/quickstarts/gin-app-feature-flag-after.png)
329329

@@ -336,22 +336,17 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
336336

337337
[!INCLUDE[Azure App Configuration cleanup](../../includes/azure-app-configuration-cleanup.md)]
338338

339-
## Next steps
339+
## Related content
340340

341341
In this quickstart, you created a feature flag in Azure App Configuration and used it in a Go Gin web application. The [Feature Management Go library](https://github.com/microsoft/FeatureManagement-Go) provides feature flag capabilities that integrate seamlessly with Azure App Configuration.For more features, continue to the following document.
342342

343-
> [!div class="nextstepaction"]
344-
> [Go Feature Management reference](https://pkg.go.dev/github.com/microsoft/Featuremanagement-Go/featuremanagement)
343+
- [Go Feature Management reference](https://pkg.go.dev/github.com/microsoft/Featuremanagement-Go/featuremanagement)
345344

346345
While a feature flag allows you to activate or deactivate functionality in your app, you may want to customize a feature flag based on your app's logic. Feature filters allow you to enable a feature flag conditionally. For more information, continue to the following tutorial.
347346

348-
> [!div class="nextstepaction"]
349-
> [Enable conditional features with feature filters](./howto-feature-filters.md)
347+
- [Enable conditional features with feature filters](./howto-feature-filters.md)
350348

351349
Azure App Configuration offers built-in feature filters that enable you to activate a feature flag only during a specific period or to a particular targeted audience of your app. For more information, continue to the following tutorial.
352350

353-
> [!div class="nextstepaction"]
354-
> [Enable features on a schedule](./howto-timewindow-filter.md)
355-
356-
> [!div class="nextstepaction"]
357-
> [Roll out features to targeted audiences](./howto-targetingfilter.md)
351+
- [Enable features on a schedule](./howto-timewindow-filter.md)
352+
- [Roll out features to targeted audiences](./howto-targetingfilter.md)

0 commit comments

Comments
 (0)