diff --git a/cinder/utils.py b/cinder/utils.py index c1715ca3866..37c9ffa1f11 100644 --- a/cinder/utils.py +++ b/cinder/utils.py @@ -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