I created a trivial GoLang 1.16 GCP CloudFunction and deployed it. When I make a request to the endpoint, I see two blank lines in the log output. I can't figure out where they are coming from. Is this normal?
func TestHttp(w http.ResponseWriter, _ *http.Request) {
w.WriteHeader(200)
w.Write([]byte("ok response"))
}
Update: Google silently fixed the issue:
Update2: The problem is back.


