Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion samples/vsphere/vcenter/hvc/administrator_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ def __init__(self):
# Login to vCenter
stub_config = vapiconnect.connect(host=args.server,
user=args.username,
pwd=args.password)
pwd=args.password,
skip_verification=args.skipverification)
# Create admin stub
self.admin_client = Administrators(stub_config)
self.cleanup = args.cleardata
Expand Down
3 changes: 2 additions & 1 deletion samples/vsphere/vcenter/hvc/links_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ def __init__(self):
# Login to vCenter
stub_config = vapiconnect.connect(host=args.server,
user=args.username,
pwd=args.password)
pwd=args.password,
skip_verification=args.skipverification)

# Create links stub
self.links_client = Links(stub_config)
Expand Down