mirror of
https://github.com/containers/podman.git
synced 2025-06-02 02:26:52 +08:00
Refacter API server emphasis on logging
* To aid in debugging log API request and response bodies at trace level. Events can be correlated using the X-Reference-Id. * Server now echos X-Reference-Id from client if set, otherwise generates an unique id. * Move logic for X-Reference-Id into middleware * Change uses of Header.Add() to Set() when setting Content-Type * Log API operations in Apache format using gorilla middleware * Port server code to use BaseContext and ConnContext Fixes #10053 Signed-off-by: Jhon Honce <jhonce@redhat.com>
This commit is contained in:
@ -1,9 +1,18 @@
|
||||
package types
|
||||
|
||||
const (
|
||||
// DefaultAPIVersion is the version of the API the server defaults to.
|
||||
// DefaultAPIVersion is the version of the compatible API the server defaults to
|
||||
DefaultAPIVersion = "1.40" // See https://docs.docker.com/engine/api/v1.40/
|
||||
|
||||
// DefaultAPIVersion is the minimal required version of the API.
|
||||
// MinimalAPIVersion is the minimal required version of the compatible API
|
||||
MinimalAPIVersion = "1.24"
|
||||
)
|
||||
|
||||
type APIContextKey int
|
||||
|
||||
const (
|
||||
DecoderKey APIContextKey = iota
|
||||
RuntimeKey
|
||||
IdleTrackerKey
|
||||
ConnKey
|
||||
)
|
||||
|
Reference in New Issue
Block a user