Skip to content

Commit 6fb02a2

Browse files
committed
Review feedback
1 parent c543698 commit 6fb02a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-app-configuration/quickstart-feature-flag-azure-functions-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
166166

167167
// Read feature flag
168168
string featureName = "Beta";
169-
bool featureEnabled = await _featureManager.IsEnabledAsync(featureName);
169+
bool featureEnabled = await _featureManager.IsEnabledAsync(featureName, req.HttpContext.RequestAborted);
170170

171171
return new OkObjectResult(featureEnabled
172172
? $"The Feature Flag '{featureName}' is turned ON!"

0 commit comments

Comments
 (0)