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: add configureawait false to reduce deadlock risk in websearchtool
Added ConfigureAwait(false) to all await calls in SearchBingAsync and
SearchSerpAPIAsync methods to reduce deadlock risk when these async
methods are called synchronously via GetAwaiter().GetResult() in the
Execute method.
This follows async best practices for library code and mitigates issues
with blocking async continuations in synchronization contexts.
Fixes PR #423 comment #6.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
0 commit comments