Change RBD delete failure log level to warn

This is a recoverable issue in the backend, so we don't have to provide
the message on the error level.

Change-Id: I35711876b2c088ad28f32abd39248dc9a467d00d
Closes-Bug: #1256259
This commit is contained in:
Mike Perez 2014-02-28 11:09:27 -08:00
parent 6b15c40ba9
commit a2f2a0e0d2
1 changed files with 1 additions and 1 deletions

View File

@ -631,7 +631,7 @@ class RBDDriver(driver.VolumeDriver):
"connection from a client that has crashed and, "
"if so, may be resolved by retrying the delete "
"after 30 seconds has elapsed."))
LOG.error(msg)
LOG.warn(msg)
# Now raise this so that volume stays available so that we
# delete can be retried.
raise exception.VolumeIsBusy(msg, volume_name=volume_name)