Skip to content

Commit e32a89d

Browse files
authored
Merge pull request #54494 from svenmalvik/feature/app-cofiguration-featurekey-prefix-fix
Added prefix to beta key to make the example work
2 parents 11e2166 + c207caa commit e32a89d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-app-configuration/quickstart-feature-flag-spring-boot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ Use the [Spring Initializr](https://start.spring.io/) to create a new Spring Boo
175175

176176
@GetMapping("/welcome")
177177
public String mainWithParam(Model model) {
178-
model.addAttribute("Beta", featureManager.isEnabledAsync("Beta").block());
178+
model.addAttribute("Beta", featureManager.isEnabledAsync("featureManagement.Beta").block());
179179
return "welcome";
180180
}
181181
}

0 commit comments

Comments
 (0)