Browse Source

Fix lint warnings

Volodymyr Tkach 2 years ago
parent
commit
1727016bd1
2 changed files with 9 additions and 3 deletions
  1. 1 1
      ctrlc/ctrlc.go
  2. 8 2
      main.go

+ 1 - 1
ctrlc/ctrlc.go

@@ -23,7 +23,7 @@ type Iface interface {
 type CallbackFunc func(ctx context.Context, shutdown context.CancelFunc) *[]Iface
 
 func App(t time.Duration, f CallbackFunc) {
-	stop := make(chan os.Signal)
+	stop := make(chan os.Signal, 1)
 	signal.Notify(stop, syscall.SIGTERM)
 	signal.Notify(stop, syscall.SIGINT)
 

+ 8 - 2
main.go

@@ -40,8 +40,14 @@ func main() {
 
 			fmt.Printf("After 12 seconds!\n")
 			w.Header().Set("Content-Type", "text/html")
-			w.Write([]byte(`<div>After 12 seconds!</div>`))
-			w.Write([]byte(`<div>` + r.URL.Path + `</div>`))
+			if _, err := w.Write([]byte(`<div>After 12 seconds!</div>`)); err != nil {
+				fmt.Printf("%s\n", err.Error())
+				return
+			}
+			if _, err := w.Write([]byte(`<div>` + r.URL.Path + `</div>`)); err != nil {
+				fmt.Printf("%s\n", err.Error())
+				return
+			}
 		})
 		srv := &http.Server{Addr: "127.0.0.1:8080", Handler: mux}
 		go func() {