Comment 1 for bug 1654212

Revision history for this message
Cyril Roelandt (cyril-roelandt) wrote :

The issue is with your shell usage.

When you write:

glance image-update --property property_xxx={key1:value, key2:value2} $id

$id is an extra argument, and "key2:value2}" is actually the image id.

You should write:

glance image-update --property property_xxx="{key1:value, key2:value2}" $id

This bug seems invalid to me.