diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-28 16:03:16 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-28 16:03:16 -0800 |
commit | 8e5aca003ca90e65b9812a4a826a5f8b768b59bb (patch) | |
tree | 762b22870a05138d4be0a281ff6b87969c07381d /system/tls/enabledev.go | |
parent | 44a55ad6a05bc720e44f3dd762ca1d9cf3f5579a (diff) |
moving call point of goroutine to be more visible to user
Diffstat (limited to 'system/tls/enabledev.go')
-rw-r--r-- | system/tls/enabledev.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/tls/enabledev.go b/system/tls/enabledev.go index 35c8e45..394666b 100644 --- a/system/tls/enabledev.go +++ b/system/tls/enabledev.go @@ -26,7 +26,7 @@ func EnableDev() { cert := filepath.Join(vendorPath, "devcerts", "cert.pem") key := filepath.Join(vendorPath, "devcerts", "key.pem") - go log.Fatalln(http.ListenAndServeTLS(":10443", cert, key, nil)) + log.Fatalln(http.ListenAndServeTLS(":10443", cert, key, nil)) fmt.Println("Server listening on https://localhost:10443 for requests... [DEV]") fmt.Println("----") fmt.Println("If your browser rejects HTTPS requests, try allowing insecure connections on localhost.") |