Merge "Replace deprecated tenacity.Retrying.call"

This commit is contained in:
Zuul 2021-08-20 17:18:17 +00:00 committed by Gerrit Code Review
commit 281d5875d7

View File

@ -657,7 +657,7 @@ def retry(retry_param: Optional[Type[Exception]],
reraise=True,
retry=retry(retry_param),
wait=wait)
return r.call(f, *args, **kwargs)
return r(f, *args, **kwargs)
return _wrapper