KYDronePilot commented on issue #1352: VCloud driver - why AdminPassword is removed from GuestCustomizationSection URL: https://github.com/apache/libcloud/issues/1352#issuecomment-537644337 I should also mention that the issue does not persist when commenting out the blocks of code that remove the AdminPassword parameter: ```python # Remove AdminPassword from customization section admin_pass = res.object.find(fixxpath(res.object, 'AdminPassword')) if admin_pass is not None: res.object.remove(admin_pass) ``` ```python # Remove AdminPassword from customization section due to an API # quirk admin_pass = res.object.find(fixxpath(res.object, 'AdminPassword')) if admin_pass is not None: res.object.remove(admin_pass) ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
