From df5add1e14785ae119fcdf7ffdce7ee0fb6d98bd Mon Sep 17 00:00:00 2001 From: jichenjc Date: Fri, 5 May 2017 21:05:08 +0800 Subject: [PATCH] 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 --- nova_zvm/virt/zvm/imageop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova_zvm/virt/zvm/imageop.py b/nova_zvm/virt/zvm/imageop.py index 73ff734..c0bf377 100644 --- a/nova_zvm/virt/zvm/imageop.py +++ b/nova_zvm/virt/zvm/imageop.py @@ -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