diff --git a/content/en/docs/demo/feature-flags.md b/content/en/docs/demo/feature-flags.md index c4cdb176428a..29c484596e29 100644 --- a/content/en/docs/demo/feature-flags.md +++ b/content/en/docs/demo/feature-flags.md @@ -13,12 +13,14 @@ feature flag service that supports [OpenFeature](https://openfeature.dev). Flag values are stored in the `demo.flagd.json` file. To enable a flag, change the `defaultVariant` value in the config file for a given flag to "on". -| Feature Flag | Service(s) | Description | -| ----------------------- | --------------- | -------------------------------------------------------------------------------------------------------- | -| `adServiceFailure` | Ad Service | Generate an error for `GetAds` 1/10th of the time | -| `cartServiceFailure` | Cart Service | Generate an error for `EmptyCart` 1/10th of the time | -| `productCatalogFailure` | Product Catalog | Generate an error for `GetProduct` requests with product id: `OLJCESPC7Z` | -| `recommendationCache` | Recommendation | Create a memory leak due to an exponentially growing cache. 1.4x growth, 50% of requests trigger growth. | +| Feature Flag | Service(s) | Description | +| --------------------------- | ---------------- | --------------------------------------------------------------------------------------------------------- | +| `adServiceFailure` | Ad Service | Generate an error for `GetAds` 1/10th of the time | +| `cartServiceFailure` | Cart Service | Generate an error for `EmptyCart` 1/10th of the time | +| `productCatalogFailure` | Product Catalog | Generate an error for `GetProduct` requests with product id: `OLJCESPC7Z` | +| `recommendationCache` | Recommendation | Create a memory leak due to an exponentially growing cache. 1.4x growth, 50% of requests trigger growth. | +| `paymentServiceFailure` | Payment Service | Generate an error when calling the `charge` method | +| `paymentServiceUnreachable` | Checkout Service | Use a bad address when calling the PaymentService to make it seem like the PaymentService is unavailable. | ## Feature Flag Architecture