Changeset https://review.openstack.org/#/c/225426/ changed how images
were uploaded into Glance, however the (now) unused TOKEN variable
and function argument to upload_image remained.
These have been removed.
Change-Id: I9910c469f72d52e56111048cc24ea3c992c1d480
| ... | ... |
@@ -36,10 +36,9 @@ function function_exists {
|
| 36 | 36 |
# - ``FILES`` must be set to the cache dir |
| 37 | 37 |
# - ``GLANCE_HOSTPORT`` |
| 38 | 38 |
# |
| 39 |
-# upload_image image-url glance-token |
|
| 39 |
+# upload_image image-url |
|
| 40 | 40 |
function upload_image {
|
| 41 | 41 |
local image_url=$1 |
| 42 |
- local token=$2 |
|
| 43 | 42 |
|
| 44 | 43 |
local image image_fname image_name |
| 45 | 44 |
|