mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #38875 from thaJeztah/revert_38518-docker_info_builder_version
Revert "Adding builder version"
This commit is contained in:
commit
5b6771345a
3 changed files with 1 additions and 5 deletions
|
@ -52,8 +52,6 @@ func (s *systemRouter) getInfo(ctx context.Context, w http.ResponseWriter, r *ht
|
|||
info.Swarm = s.cluster.Info()
|
||||
}
|
||||
|
||||
info.Builder = build.BuilderVersion(*s.features)
|
||||
|
||||
if versions.LessThan(httputils.VersionFromContext(ctx), "1.25") {
|
||||
// TODO: handle this conversion in engine-api
|
||||
type oldInfo struct {
|
||||
|
|
|
@ -146,7 +146,6 @@ type Commit struct {
|
|||
// GET "/info"
|
||||
type Info struct {
|
||||
ID string
|
||||
Builder BuilderVersion
|
||||
Containers int
|
||||
ContainersRunning int
|
||||
ContainersPaused int
|
||||
|
|
|
@ -35,8 +35,7 @@ func TestInfoAPI(t *testing.T) {
|
|||
"KernelVersion",
|
||||
"Driver",
|
||||
"ServerVersion",
|
||||
"SecurityOptions",
|
||||
"Builder"}
|
||||
"SecurityOptions"}
|
||||
|
||||
out := fmt.Sprintf("%+v", info)
|
||||
for _, linePrefix := range stringsToCheck {
|
||||
|
|
Loading…
Reference in a new issue