commit | 8cdba8ab6493cfcc8e84b384d695de09139760e9 | [log] [tgz] |
---|---|---|
author | Mohammad Hasnain Mohsin Rajan <hasnain2808@gmail.com> | Thu Feb 25 18:36:19 2021 +0530 |
committer | GitHub <noreply@github.com> | Thu Feb 25 18:36:19 2021 +0530 |
tree | 4ea385d2ceb72136e21da4db310cd6b3ce4b21db | |
parent | 6af3c3fa2ab6cb3a4689ffbf7628a00cd07a31f6 [diff] |
fix: ams integration breaks when error raised (#24383)
diff --git a/erpnext/erpnext_integrations/doctype/amazon_mws_settings/amazon_methods.py b/erpnext/erpnext_integrations/doctype/amazon_mws_settings/amazon_methods.py index cc75a0a..148c1a6 100644 --- a/erpnext/erpnext_integrations/doctype/amazon_mws_settings/amazon_methods.py +++ b/erpnext/erpnext_integrations/doctype/amazon_mws_settings/amazon_methods.py
@@ -117,7 +117,7 @@ return response except Exception as e: delay = math.pow(4, x) * 125 - frappe.log_error(message=e, title=str(mws_method)) + frappe.log_error(message=e, title=f'Method "{mws_method.__name__}" failed') time.sleep(delay) continue