Public bug reported:

$ nova boot --image=$img_id --flavor=1 --meta=a=b=c myname
ERROR: dictionary update sequence element #0 has length 3; 2 is required

Simple fix is in novaclient/v1_1/shell.py '_boot' to do:
-    meta = dict(v.split('=') for v in args.meta)
+    meta = dict(v.split('=',1) for v in args.meta)

** Affects: python-novaclient (Ubuntu)
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-novaclient in Ubuntu.
https://bugs.launchpad.net/bugs/934515

Title:
  --meta key=value cannot accept '=' in value

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/934515/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs

Reply via email to