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 async setup() method to AsyncRedisSaver (#74)
Add async setup() method to AsyncRedisSaver that delegates to asetup()
to match the canonical pattern used by PostgreSQL and SQLite checkpointers.
This fixes the RuntimeWarning caused by calling the inherited sync setup()
method from BaseRedisSaver, which called async create() methods without
awaiting them.
Maintains backward compatibility by keeping the existing asetup() method
while providing the standard async setup() interface that users expect
from LangGraph checkpointers.
Fixes#74
0 commit comments