diff --git a/cinder/volume/flows/manager/create_volume.py b/cinder/volume/flows/manager/create_volume.py index 782b991f6cd..dbcf1f23b87 100644 --- a/cinder/volume/flows/manager/create_volume.py +++ b/cinder/volume/flows/manager/create_volume.py @@ -145,7 +145,7 @@ class OnFailureRescheduleTask(flow_utils.CinderTask): volume.id) def _reschedule(self, context, cause, request_spec, filter_properties, - volume): + volume) -> None: """Actions that happen during the rescheduling attempt occur here.""" create_volume = self.scheduler_rpcapi.create_volume @@ -169,8 +169,8 @@ class OnFailureRescheduleTask(flow_utils.CinderTask): # Stringify to avoid circular ref problem in json serialization retry_info['exc'] = traceback.format_exception(*cause.exc_info) - return create_volume(context, volume, request_spec=request_spec, - filter_properties=filter_properties) + create_volume(context, volume, request_spec=request_spec, + filter_properties=filter_properties) def _post_reschedule(self, volume): """Actions that happen after the rescheduling attempt occur here."""