control/controlclient: fix build break caused by overzealous gitting

This commit is contained in:
Brad Fitzpatrick 2020-04-27 08:18:35 -07:00
parent 2244cca5ff
commit a464439658

View File

@ -16,6 +16,7 @@
"io/ioutil"
"log"
"net/http"
"net/url"
"os"
"reflect"
"strconv"
@ -115,6 +116,10 @@ func NewDirect(opts Options) (*Direct, error) {
return nil, errors.New("controlclient.New: no server URL specified")
}
opts.ServerURL = strings.TrimRight(opts.ServerURL, "/")
serverURL, err := url.Parse(opts.ServerURL)
if err != nil {
return nil, err
}
if opts.TimeNow == nil {
opts.TimeNow = time.Now
}