avoid raise error log when update image failed

as in nova side we tried to update image property and this is
always allowed by default, we thought it's an error, but actually
it's acceptable since next time we will do that again.

Change-Id: I82f538aaad8882a5b96c3cec1f4781bd91c5944b
This commit is contained in:
jichenjc 2017-05-05 21:05:08 +08:00
parent 66a40cef68
commit df5add1e14
1 changed files with 1 additions and 1 deletions

View File

@ -811,7 +811,7 @@ class ZVMImages(object):
new_image_meta, None)
except nova_exception.ImageNotAuthorized:
msg = _('Not allowed to modify attributes for image %s') % image_id
LOG.error(msg)
LOG.info(msg)
return new_image_meta