Skip to content
Snippets Groups Projects
Unverified Commit 8d662134 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone Committed by GitHub
Browse files

Merge pull request #178 from crwood/177.adjust-retry-interval

Increase PaymentController RETRY_INTERVAL to 1 sec
parents 96e7b42d ba5eaf7b
No related branches found
No related tags found
No related merge requests found
...@@ -102,7 +102,7 @@ from .model import ( ...@@ -102,7 +102,7 @@ from .model import (
Error as model_Error, Error as model_Error,
) )
RETRY_INTERVAL = timedelta(milliseconds=1) RETRY_INTERVAL = timedelta(milliseconds=1000)
@attr.s @attr.s
class UnexpectedResponse(Exception): class UnexpectedResponse(Exception):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment