We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79b53a9 commit 8f26275Copy full SHA for 8f26275
hooks/openfeature-hooks-opentelemetry/README.md
@@ -24,7 +24,7 @@ The `TracingHook` can be set globally. This will ensure that every flag evaluati
24
from openfeature import api
25
from openfeature.contrib.hook.opentelemetry import TracingHook
26
27
-api.add_hooks(TracingHook())
+api.add_hooks([TracingHook()])
28
```
29
30
### Register Per Client
@@ -36,7 +36,7 @@ from openfeature import api
36
37
38
client = api.get_client("my-app")
39
-client.add_hooks(TracingHook())
+client.add_hooks([TracingHook()])
40
41
42
## License
0 commit comments