FyZzyss

Results 5 comments of FyZzyss

https://github.com/MagicStack/asyncpg/issues/137 may be this can help? It seems that we need to use `.fetch` instead `executemany`

Same issue. This cannot be solved simply by passing the function name as a string.

As stated here https://github.com/jd/tenacity#changing-arguments-at-run-time. There should be no method call inside retrayer Your code should be: ``` def sending_emulation_timeout(self): retryier = Retrying(stop=stop_after_delay(self.sending_timeout), reraise=True) retryier(self.sending_emulation) ``` The Reraise flag affects raise...