You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: correct MultiProvider class name in docs and remove duplicate error logging (#1267)
Addresses feedback from #1265 (Gemini bot review comments).
## Changes
1. **Fixed documentation mismatch**: Updated all code examples to use
`MultiProvider` instead of incorrect `WebMultiProvider` class name
- `packages/web/README.md` (4 occurrences)
- `packages/web/src/provider/multi-provider/README.md` (4 occurrences)
2. **Removed duplicate error logging**: Fixed redundant stack trace
logging in `hook-executor.ts` where errors were being logged twice in
both `errorHooks` and `finallyHooks` methods
<!-- av pr metadata
This information is embedded by the av CLI when creating PRs to track
the status of stacks when using Aviator. Please do not delete or edit
this section of the PR.
```
{"parent":"main","parentHead":"","trunk":"main"}
```
-->
Signed-off-by: Jonathan Norris <[email protected]>
Copy file name to clipboardExpand all lines: packages/web/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -155,9 +155,9 @@ The Multi-Provider is a powerful tool for performing migrations between flag pro
155
155
-**Multiple Data Sources**: The Multi-Provider allows you to seamlessly combine many sources of flagging data, such as environment variables, local files, database values and SaaS hosted feature management systems.
@@ -179,9 +179,9 @@ The Multi-Provider comes with three strategies out of the box:
179
179
-**ComparisonStrategy**: Evaluates all providers sequentially. If every provider returns a successful result with the same value, then that result is returned. Otherwise, the result returned by the configured "fallback provider" will be used.
0 commit comments