details: https://code.tryton.org/tryton/commit/2fe8bd9205e2
branch: 8.0
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
(grafted from b0fef2fdbe01bb7a7fc4f7d6032b9ab6ef61160c)
diffstat:
modules/web_shop_shopify/tests/tools.py | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diffs (11 lines):
diff -r c3be98d53656 -r 2fe8bd9205e2 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