Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit c78f28f

Browse files
Merge component 'engine' from git@github.com:moby/moby 19.03
2 parents e0b868f + 38ac4c1 commit c78f28f

17 files changed

Lines changed: 17 additions & 18 deletions

File tree

components/engine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
ARG CROSS="false"
2828
# IMPORTANT: When updating this please note that stdlib archive/tar pkg is vendored
29-
ARG GO_VERSION=1.13.14
29+
ARG GO_VERSION=1.13.15
3030
ARG DEBIAN_FRONTEND=noninteractive
3131
ARG VPNKIT_DIGEST=e508a17cfacc8fd39261d5b4e397df2b953690da577e2c987a47630cd0c42f8e
3232

components/engine/Dockerfile.e2e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.13.14
1+
ARG GO_VERSION=1.13.15
22

33
FROM golang:${GO_VERSION}-alpine AS base
44
ENV GO111MODULE=off

components/engine/Dockerfile.simple

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# This represents the bare minimum required to build and test Docker.
77

8-
ARG GO_VERSION=1.13.14
8+
ARG GO_VERSION=1.13.15
99

1010
FROM golang:${GO_VERSION}-stretch
1111
ENV GO111MODULE=off

components/engine/Dockerfile.windows

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ FROM microsoft/windowsservercore
165165
# Use PowerShell as the default shell
166166
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
167167

168-
ARG GO_VERSION=1.13.14
168+
ARG GO_VERSION=1.13.15
169169

170170
# Environment variable notes:
171171
# - GO_VERSION must be consistent with 'Dockerfile' used by Linux.

components/engine/api/swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4467,7 +4467,7 @@ definitions:
44674467
example: 4
44684468
MemTotal:
44694469
description: |
4470-
Total amount of physical memory available on the host, in kilobytes (kB).
4470+
Total amount of physical memory available on the host, in bytes.
44714471
type: "integer"
44724472
format: "int64"
44734473
example: 2095882240

components/engine/client/request.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,7 @@ func (cli *Client) doRequest(ctx context.Context, req *http.Request) (serverResp
143143

144144
// Don't decorate context sentinel errors; users may be comparing to
145145
// them directly.
146-
switch err {
147-
case context.Canceled, context.DeadlineExceeded:
146+
if errors.Is(err, context.Canceled) || errors.Is(err, context.DeadlineExceeded) {
148147
return serverResp, err
149148
}
150149

components/engine/docs/api/v1.32.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3599,7 +3599,7 @@ definitions:
35993599
example: 4
36003600
MemTotal:
36013601
description: |
3602-
Total amount of physical memory available on the host, in kilobytes (kB).
3602+
Total amount of physical memory available on the host, in bytes.
36033603
type: "integer"
36043604
format: "int64"
36053605
example: 2095882240

components/engine/docs/api/v1.33.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3604,7 +3604,7 @@ definitions:
36043604
example: 4
36053605
MemTotal:
36063606
description: |
3607-
Total amount of physical memory available on the host, in kilobytes (kB).
3607+
Total amount of physical memory available on the host, in bytes.
36083608
type: "integer"
36093609
format: "int64"
36103610
example: 2095882240

components/engine/docs/api/v1.34.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3633,7 +3633,7 @@ definitions:
36333633
example: 4
36343634
MemTotal:
36353635
description: |
3636-
Total amount of physical memory available on the host, in kilobytes (kB).
3636+
Total amount of physical memory available on the host, in bytes.
36373637
type: "integer"
36383638
format: "int64"
36393639
example: 2095882240

components/engine/docs/api/v1.35.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3615,7 +3615,7 @@ definitions:
36153615
example: 4
36163616
MemTotal:
36173617
description: |
3618-
Total amount of physical memory available on the host, in kilobytes (kB).
3618+
Total amount of physical memory available on the host, in bytes.
36193619
type: "integer"
36203620
format: "int64"
36213621
example: 2095882240

0 commit comments

Comments
 (0)