Skip to content

Commit beb1f43

Browse files
committed
Review fixes
Signed-off-by: Justin Terry (VM) <[email protected]>
1 parent 2ddbb2d commit beb1f43

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

runtime/v2/binary.go

+5-6
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,12 @@ func (b *binary) Start(ctx context.Context) (_ *shim, err error) {
110110

111111
func (b *binary) Delete(ctx context.Context) (*runtime.Exit, error) {
112112
log.G(ctx).Info("cleaning up dead shim")
113+
114+
// Windows cannot delete the current working directory while an
115+
// executable is in use with it. For the cleanup case we invoke with the
116+
// default work dir and forward the bundle path on the cmdline.
113117
var bundlePath string
114-
if gruntime.GOOS == "windows" {
115-
// Windows cannot delete the current working directory while an
116-
// executable is in use with it. For the cleanup case we invoke with the
117-
// deafult work dir and forward the bundle path on the cmdline.
118-
bundlePath = ""
119-
} else {
118+
if gruntime.GOOS != "windows" {
120119
bundlePath = b.bundle.Path
121120
}
122121

runtime/v2/shim/shim_windows.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ func handleSignals(logger *logrus.Entry, signals chan os.Signal) error {
129129
// to reconnect to any shims. This means that the connection to the logger will
130130
// be severed but when containerd starts up it should reconnect and start
131131
// logging again. We abstract all of this logic behind what looks like a simple
132-
// `io.Writer` that can reconnect in the liftime and buffers logs while
132+
// `io.Writer` that can reconnect in the lifetime and buffers logs while
133133
// disconnected.
134134
type deferredShimWriteLogger struct {
135135
mu sync.Mutex
@@ -193,7 +193,7 @@ func (dswl *deferredShimWriteLogger) Write(p []byte) (int, error) {
193193
}
194194

195195
if dswl.connected {
196-
// We have a connection. beginAccept would of drained the buffer so we just write our data to
196+
// We have a connection. beginAccept would have drained the buffer so we just write our data to
197197
// the connection directly.
198198
written, err := dswl.c.Write(p)
199199
if err != nil {

0 commit comments

Comments
 (0)