Using the default HTTP client and server

Client

Mistake

This does not specify any timeouts

client := &http.Client{}

Fix

client := &http.Client{
  Timeout: 5 * time.Second,
  Transport: &http.Transport{
    DialContext: (&net.Dialer{
      Timeout: time.Second,
    }).DialContext,
    TLSHandshakeTimeout: time.Second,
    ResponseHeaderTimeout: time.Second,
  },
}

We should also consider that the clients are pooled and re-used. Balancing these variables is critical for production facing systems.

Server

Mistake

server := &http.Server{}
server.Serve(listener)

Fix

server := &http.Server{
  Addr: ":8080",
  ReadHeaderTimeout: 500 * time.Millisecond,
  ReadTimeout: 500 * time.Millisecond,
  Handler: http.TimeoutHandler(handler, time.Second, "foo"),
  IdleTimeout: time.Second,
}

References