Comment 6 for bug 989590

Revision history for this message
Kevin Jackson (kevin-linuxservices) wrote :

I had the same issue and it turned out that my nova-volume service had an incorrect character in that only came to light when certain features were being called:

VOLUME_PUBLIC_URL="http://$ENDPOINT:8776/v1/\$(tenant_id)s"
VOLUME_ADMIN_URL=$VOLUME_PUBLIC_URL
VOLUME_INTERNAL_URL=$VOLUME_PUBLIC_URL

should be % instead of \$

VOLUME_PUBLIC_URL="http://$ENDPOINT:8776/v1/%(tenant_id)s"

Note there should be no issues using a db backend - Ubuntu packages should work with a MySQL backend.