Skip to content

Commit 36795e5

Browse files
authored
[#109]: bug(DLL): incorrect DLL traverse on stop
2 parents a47471e + c1956fc commit 36795e5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: true
2323
matrix:
24-
go: [ 1.17.2 ]
24+
go: [ 1.17.3 ]
2525
os: [ ubuntu-20.04 ]
2626
env:
2727
GO111MODULE: on

.github/workflows/macOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: true
2323
matrix:
24-
go: [ 1.17.2 ]
24+
go: [ 1.17.3 ]
2525
os: [ macos-latest ]
2626
env:
2727
GO111MODULE: on

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: true
2323
matrix:
24-
go: [ 1.17.2 ]
24+
go: [ 1.17.3 ]
2525
os: [ windows-latest ]
2626
env:
2727
GO111MODULE: on

pkg/container/endure.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ func (e *Endure) Shutdown() error {
456456
if e.runList == nil {
457457
return nil
458458
}
459-
return e.shutdown(e.runList.Head, true)
459+
return e.shutdown(e.runList.Tail, false)
460460
}
461461

462462
// I don't like this part, this should be rewritten

0 commit comments

Comments
 (0)