Skip to content

Commit 878d390

Browse files
authored
Added missing assignment to ECS match statement
1 parent 2c64901 commit 878d390

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ func GetCurrentContainerID() string {
175175
strLines := string(lines)
176176
if id := matchDockerCurrentContainerID(strLines); id != "" {
177177
return id
178-
} else if matchECSCurrentContainerID(strLines); id != "" {
178+
} else if id:= matchECSCurrentContainerID(strLines); id != "" {
179179
return id
180180
}
181181
}

0 commit comments

Comments
 (0)