Merge pull request #8486 from riyad/improve-ping-api-compat

REST API v2 - ping - remove newline from response to improve Docker compatibility
This commit is contained in:
OpenShift Merge Robot 2020-11-26 16:40:11 +01:00 committed by GitHub
commit 201b0acd02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -25,5 +25,4 @@ func Ping(w http.ResponseWriter, r *http.Request) {
if r.Method == http.MethodGet {
fmt.Fprint(w, "OK")
}
fmt.Fprint(w, "\n")
}