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
Raises : ValueError: Multiple adapters cannot (currently) implement the same lifecycle method. Sync methods: ['do_node_execute']. Async methods: []
even though there was only one adapter provided. I think this error is a bit imprecise?
Describe the solution you'd like
A clear and concise description of what you want to happen.
I would like to use PDBDebugger with async_driver.Builder().
If it makes sense, I'd also like to
Describe alternatives you've considered
Using pdb.set_trace() on lines I want to inspect.
Additional context
The async_driver requires the use of .with_adapters() but does not support multiple adapters.
Thanks for reporting the issue. Currently, PDBDebugger isn't supported for async .
You're right that the error message can be ambiguous:
ValueError: Multiple adapters cannot (currently) implement the same lifecycle method. Sync methods: ['do_node_execute']. Async methods: []
In this case, the relevant part of the error is that the do_node_execute doesn't have an async version. It's definitely on our roadmap and we note your interest!
Is your feature request related to a problem? Please describe.
sf-hamitlon=1.80.0
I would like to use
PDBDebugger
withasync_driver.Builder()
.Raises :
ValueError: Multiple adapters cannot (currently) implement the same lifecycle method. Sync methods: ['do_node_execute']. Async methods: []
even though there was only one adapter provided. I think this error is a bit imprecise?
Describe the solution you'd like
A clear and concise description of what you want to happen.
I would like to use
PDBDebugger
withasync_driver.Builder()
.If it makes sense, I'd also like to
Describe alternatives you've considered
Using
pdb.set_trace()
on lines I want to inspect.Additional context
The
async_driver
requires the use of.with_adapters()
but does not support multiple adapters.Raises:
ValueError: Multiple adapters cannot (currently) implement the same lifecycle method. Sync methods: ['do_node_execute']. Async methods: []
The text was updated successfully, but these errors were encountered: