details: https://code.tryton.org/tryton/commit/b0fef2fdbe01
branch: default
user: Cédric Krier <[email protected]>
date: Tue Jul 21 17:33:03 2026 +0200
description:
Raise the final exception when all retries of Shopify request has failed
diffstat:
modules/web_shop_shopify/tests/tools.py | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diffs (11 lines):
diff -r 4ec0ec9f0ae0 -r b0fef2fdbe01 modules/web_shop_shopify/tests/tools.py
--- a/modules/web_shop_shopify/tests/tools.py Tue Jul 21 17:32:21 2026 +0200
+++ b/modules/web_shop_shopify/tests/tools.py Tue Jul 21 17:33:03 2026 +0200
@@ -19,6 +19,7 @@
return func(*args, **kwargs)
except Exception:
time.sleep(1)
+ return func(*args, **kwargs)
return wrapper