Set xenapi_use_agent to "False" instead of false

The correct remote value is "False". It's supposed to be a string.
Set it that way.

Story: #2005851
Task: #33637
Change-Id: I44b6fc9fe12422024392d60573862a646046564a
This commit is contained in:
Monty Taylor 2019-06-11 08:19:19 -05:00
parent f4fa6fabba
commit fdf43169e3
2 changed files with 8 additions and 1 deletions

View File

@ -22,7 +22,7 @@
"block_storage_api_version": "1",
"disable_vendor_agent": {
"vm_mode": "hvm",
"xenapi_use_agent": false
"xenapi_use_agent": "False"
},
"has_network": false
}

View File

@ -0,0 +1,7 @@
---
fixes:
- |
Updated the Rackspace vendor entry to use `"False"` for the value of
`xenapi_use_agent` instead of `false`, because that's what the remote
side expects. The recent update to use the Resource layer exposed
the incorrect setting causing image uploads to Rackspace to fail.