Skip to content

Commit c09f74a

Browse files
committedJan 15, 2015
End those heartbeat messages with \n.
1 parent 7a08604 commit c09f74a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func ServeInternal(c *Context) {
3030

3131
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
3232
w.Header().Set("Content-Type", "text/plain")
33-
w.Write([]byte("auth-store internal API alive and running."))
33+
w.Write([]byte("auth-store internal API alive and running.\n"))
3434
})
3535

3636
mux.HandleFunc("/v1/style", BindContext(c, StyleHandler))
@@ -78,7 +78,7 @@ func ServeExternal(c *Context) {
7878

7979
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
8080
w.Header().Set("Content-Type", "text/plain")
81-
w.Write([]byte("auth-store external API alive and running."))
81+
w.Write([]byte("auth-store external API alive and running.\n"))
8282
})
8383

8484
mux.HandleFunc("/v1/accounts", BindContext(c, AccountHandler))

0 commit comments

Comments
 (0)
Please sign in to comment.