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
Lately our calls to GoCardless are taking an excessive amount of time and are even causing timeouts in our wsgi. Calls to BaseService._perform_request are all using hardcoded settings, e.g: RedirectFlowsService.create. It would be appreciated if we could configure these ourselves somehow and also configure a timeout. The library uses requests internally which allows you to pass a timeout, it would be neat if we could pass all this data ourselves and handle the timeout and other exceptions ourselves.
The text was updated successfully, but these errors were encountered:
@AndreasBackx Thanks for your feedback! As you may have seen, we've recently added new functionality to the library to support retrying failed requests automatically. It'd definitely make sense for this to be configurable though - we'll look at adding support for this ❤️
Lately our calls to GoCardless are taking an excessive amount of time and are even causing timeouts in our wsgi. Calls to
BaseService._perform_request
are all using hardcoded settings, e.g:RedirectFlowsService.create
. It would be appreciated if we could configure these ourselves somehow and also configure a timeout. The library uses requests internally which allows you to pass a timeout, it would be neat if we could pass all this data ourselves and handle the timeout and other exceptions ourselves.The text was updated successfully, but these errors were encountered: