mirror of
https://github.com/containers/podman.git
synced 2025-07-30 03:42:24 +08:00
Merge pull request #7730 from jwhonce/wip/headers
Add Server header to API service responses
This commit is contained in:
@ -40,9 +40,12 @@ func (s *APIServer) APIHandler(h http.HandlerFunc) http.HandlerFunc {
|
|||||||
c = context.WithValue(c, "idletracker", s.idleTracker) // nolint
|
c = context.WithValue(c, "idletracker", s.idleTracker) // nolint
|
||||||
r = r.WithContext(c)
|
r = r.WithContext(c)
|
||||||
|
|
||||||
v := utils.APIVersion[utils.CompatTree][utils.CurrentAPIVersion]
|
cv := utils.APIVersion[utils.CompatTree][utils.CurrentAPIVersion]
|
||||||
w.Header().Set("API-Version", fmt.Sprintf("%d.%d", v.Major, v.Minor))
|
w.Header().Set("API-Version", fmt.Sprintf("%d.%d", cv.Major, cv.Minor))
|
||||||
w.Header().Set("Libpod-API-Version", utils.APIVersion[utils.LibpodTree][utils.CurrentAPIVersion].String())
|
|
||||||
|
lv := utils.APIVersion[utils.LibpodTree][utils.CurrentAPIVersion].String()
|
||||||
|
w.Header().Set("Libpod-API-Version", lv)
|
||||||
|
w.Header().Set("Server", "Libpod/"+lv+" ("+runtime.GOOS+")")
|
||||||
|
|
||||||
h(w, r)
|
h(w, r)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user