Skip to content

Commit

Permalink
Update providers/openfeature-provider-flagd/README.md
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Beemer <[email protected]>
Signed-off-by: Simon Schrottner <[email protected]>
  • Loading branch information
aepfli and beeme1mr committed Feb 17, 2025
1 parent 43e30b8 commit 1a81305
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
3 changes: 1 addition & 2 deletions providers/openfeature-provider-flagd/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# flagd Provider for OpenFeature

This provider is designed to use
flagd's [evaluation protocol](https://github.com/open-feature/schemas/blob/main/protobuf/schema/v1/schema.proto).
This provider is designed to use flagd's [evaluation protocol](https://github.com/open-feature/schemas/blob/main/protobuf/schema/v1/schema.proto), or locally evaluate flags defined in a flagd [flag definition](https://github.com/open-feature/schemas/blob/main/json/flagd-definitions.json) via the OpenFeature Python SDK.

## Installation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def listen(self) -> None:
self.connected = True

if not self.active:
logger.info("Terminating gRPC sync thread")
logger.debug("Terminating gRPC sync thread")
return
except grpc.RpcError as e: # noqa: PERF203
logger.error(f"SyncFlags stream error, {e.code()=} {e.details()=}")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
import sys

from pytest_bdd import scenarios

from tests.e2e.paths import TEST_HARNESS_PATH

# as soon as we support all the features, we can actually remove this limitation to not run on Python 3.8
# Python 3.8 does not fully support tagging, hence that it will run all cases
if sys.version_info >= (3, 9):
scenarios(f"{TEST_HARNESS_PATH}/gherkin")
scenarios(f"{TEST_HARNESS_PATH}/gherkin")

0 comments on commit 1a81305

Please sign in to comment.