Is there any way to replicate RetryOperationalError of peewee in peewee_async?
I have tried inheriting from RetryOperationalError and overriding execute (closing and retrying on error), but that does not quite work, specially for transactions. For reference, what peewee does is override execute_sql and retries on error.
Is there any way to replicate RetryOperationalError of peewee in peewee_async?
I have tried inheriting from RetryOperationalError and overriding execute (closing and retrying on error), but that does not quite work, specially for transactions. For reference, what peewee does is override execute_sql and retries on error.
Thank you in advanced.