Skip to content

Commit db09b02

Browse files
committed
Update howto-feature-filters-python.md
1 parent 89f250c commit db09b02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-app-configuration/howto-feature-filters-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ You've added a custom feature filter named **Random** with a **Percentage** para
7272

7373
## Feature filter in action
7474

75-
When you run the application the configuration provider will load the *Beta* feature flag from Azure App Configuration. Then every 5 seconds the result of the `is_enabled("Beta")` method will be printed to the console. As the `RandomFilter` is implemented and used by the *Beta* feature flag, the result will be `True` 50 percent of the time and `False` the other 50 percent of the time.
75+
When you run the application the configuration provider will load the *Beta* feature flag from Azure App Configuration. The result of the `is_enabled("Beta")` method will be printed to the console. As the `RandomFilter` is implemented and used by the *Beta* feature flag, the result will be `True` 50 percent of the time and `False` the other 50 percent of the time.
7676

77-
Running the application multiple times will show that the *Beta* feature flag is sometimes enabled and sometimes not.
77+
Running the application will show that the *Beta* feature flag is sometimes enabled and sometimes not.
7878

7979
```bash
8080
Beta is True

0 commit comments

Comments
 (0)