mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-05 03:26:37 +00:00
Merge pull request #744 from jodh-intel/update-to-golang-1.10.4
versions: Update golang to 1.10.4
This commit is contained in:
commit
f3ef220dce
@ -138,9 +138,12 @@ externals:
|
|||||||
|
|
||||||
cri-containerd:
|
cri-containerd:
|
||||||
description: |
|
description: |
|
||||||
Containerd Plugin for Kubernetes Container Runtime Interface
|
Containerd Plugin for Kubernetes Container Runtime Interface.
|
||||||
|
|
||||||
|
Note that the current version is required for golang 1.10.2
|
||||||
|
(see https://github.com/containerd/cri/pull/941).
|
||||||
url: "https://github.com/containerd/cri"
|
url: "https://github.com/containerd/cri"
|
||||||
version: "v1.0.5"
|
version: "8b0d53c09c41d9fbc3b3896548ecf011518e3c42"
|
||||||
meta:
|
meta:
|
||||||
containerd-version: "1.1.3"
|
containerd-version: "1.1.3"
|
||||||
|
|
||||||
@ -183,9 +186,10 @@ languages:
|
|||||||
golang:
|
golang:
|
||||||
description: "Google's 'go' language"
|
description: "Google's 'go' language"
|
||||||
notes: "'version' is the default minimum version used by this project."
|
notes: "'version' is the default minimum version used by this project."
|
||||||
version: "1.9.7"
|
issue: "https://github.com/golang/go/issues/20676"
|
||||||
|
version: "1.10.4"
|
||||||
meta:
|
meta:
|
||||||
newest-version: "1.10"
|
newest-version: "1.11"
|
||||||
|
|
||||||
specs:
|
specs:
|
||||||
description: "Details of important specifications"
|
description: "Details of important specifications"
|
||||||
|
@ -18,9 +18,9 @@ type monitor struct {
|
|||||||
sandbox *Sandbox
|
sandbox *Sandbox
|
||||||
checkInterval time.Duration
|
checkInterval time.Duration
|
||||||
watchers []chan error
|
watchers []chan error
|
||||||
|
wg sync.WaitGroup
|
||||||
running bool
|
running bool
|
||||||
stopCh chan bool
|
stopCh chan bool
|
||||||
wg sync.WaitGroup
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func newMonitor(s *Sandbox) *monitor {
|
func newMonitor(s *Sandbox) *monitor {
|
||||||
|
@ -25,7 +25,6 @@ type CCProxyMock struct {
|
|||||||
sync.Mutex
|
sync.Mutex
|
||||||
|
|
||||||
t *testing.T
|
t *testing.T
|
||||||
wg sync.WaitGroup
|
|
||||||
connectionPath string
|
connectionPath string
|
||||||
|
|
||||||
// proxy socket
|
// proxy socket
|
||||||
@ -44,6 +43,8 @@ type CCProxyMock struct {
|
|||||||
ShimDisconnected chan bool
|
ShimDisconnected chan bool
|
||||||
StdinReceived chan bool
|
StdinReceived chan bool
|
||||||
|
|
||||||
|
wg sync.WaitGroup
|
||||||
|
|
||||||
stopped bool
|
stopped bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user