follow up fix to share-shrinking

changed break to Exception on timeout while resizing the share.

Change-Id: Ic1460667f2c69d1ef1188d912a6bd04ebe0c0723
This commit is contained in:
Dina Saparbaeva 2021-03-12 11:41:45 +00:00
parent 0c39bd8436
commit f8a8004792
1 changed files with 5 additions and 2 deletions

View File

@ -412,13 +412,16 @@ class ResizeForm(forms.SelfHandlingForm):
time_elapsed += interval
share = manila.share_get(request, share_id)
if time_elapsed > timeout:
break
raise exceptions.WorkflowError(_(
"The operation timed out while resizing. "
"Please try again."))
if share.size == new_size:
message = _('Resized share "%s"') % share.name
messages.success(request, message)
return True
raise Exception
raise exceptions.WorkflowError(_(
"Unable to resize share. "))
class RevertForm(forms.SelfHandlingForm):