Activity log for bug #1618897

Date Who What changed Old value New value Message
2016-08-31 13:31:04 George Shuklin bug added bug
2016-08-31 13:33:28 George Shuklin description Following example in the section "Image data" is incorrect: curl -i -X PUT -H "X-Auth-Token: $token" \ -H "Content-Type: application/octet-stream" \ -d @/home/glance/ubuntu-12.10.qcow2 \ $image_url/v2/images/{image_id}/file -d option is equal to --data-ascii, which, according to curl man page is: "When --data is told to read from a file like that, carriage returns and newlines will be stripped out." This will mange uploaded image. Proper command line is: curl -i -X PUT -H "X-Auth-Token: $token" \ -H "Content-Type: application/octet-stream" \ -data-binary @/home/glance/ubuntu-12.10.qcow2 \ $image_url/v2/images/{image_id}/file Following example in the section "Image data" is incorrect: curl -i -X PUT -H "X-Auth-Token: $token" \    -H "Content-Type: application/octet-stream" \    -d @/home/glance/ubuntu-12.10.qcow2 \    $image_url/v2/images/{image_id}/file -d option is equal to --data-ascii, which, according to curl man page is: "When --data is told to read from a file like that, carriage returns and newlines will be stripped out." This will mange uploaded image. Proper command line is: curl -i -X PUT -H "X-Auth-Token: $token" \    -H "Content-Type: application/octet-stream" \    --data-binary @/home/glance/ubuntu-12.10.qcow2 \    $image_url/v2/images/{image_id}/file
2016-08-31 14:12:05 tamil vanan openstack-manuals: assignee tamil vanan (tamilhce)
2016-09-01 05:28:59 tamil vanan openstack-manuals: status New In Progress
2016-10-18 01:07:53 Joseph Robinson openstack-manuals: importance Undecided Medium
2016-10-18 01:08:03 Joseph Robinson tags user-guide
2016-10-18 01:51:46 OpenStack Infra openstack-manuals: status In Progress Fix Released