You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by GitBox <gi...@apache.org> on 2019/10/02 19:30:22 UTC

[GitHub] [libcloud] KYDronePilot commented on issue #1352: VCloud driver - why AdminPassword is removed from GuestCustomizationSection

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:
users@infra.apache.org


With regards,
Apache Git Services