Skip to content
This repository has been archived by the owner on Jan 21, 2023. It is now read-only.

Commit

Permalink
http to https in client
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed Mar 20, 2018
1 parent b4b5508 commit 279971c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/vbox/cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ var listCmd = &cobra.Command{
}

// Create request
req, err := http.NewRequest("GET", "http://"+host+":"+port+"/virtualbox/list", nil)
req, err := http.NewRequest("GET", "https://"+host+":"+port+"/virtualbox/list", nil)

// Fetch Request
resp, err := client.Do(req)
Expand Down

0 comments on commit 279971c

Please sign in to comment.