Fix AttributeError in wait_for_volume_retype

The TimeoutException was coming from the wrong module,
which might have just been a rebase mistake while this
stuff was moving around.

Change-Id: Id494aea1527d03148ba9284c48a1c171d3469911
Closes-Bug: #1664633
This commit is contained in:
Matt Riedemann 2017-02-14 11:34:30 -05:00
parent 6827cd33c4
commit 74eb3b5147
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ def wait_for_volume_retype(client, volume_id, new_volume_type):
'within the required time (%s s).' %
(volume_id, new_volume_type, current_volume_type,
client.build_timeout))
raise exceptions.TimeoutException(message)
raise lib_exc.TimeoutException(message)
def wait_for_snapshot_status(client, snapshot_id, status):