Skip to content

Commit

Permalink
fix(typo): forgot to rename labels
Browse files Browse the repository at this point in the history
  • Loading branch information
yyewolf committed Nov 21, 2023
1 parent 6b55eaa commit 045b5bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/docker/isolator.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ func DoIsolationAtoB(container types.ContainerJSON) {
func DoIsolationBtoA(container types.ContainerJSON) {
// Check if any container are linked to this container
// If so, link them
labels := labels.MapToLabels(container.Config.Labels)
logrus.Debugf("Labels: %+v", labels)
if labels.Ignore {
lbl := labels.MapToLabels(container.Config.Labels)
logrus.Debugf("Labels: %+v", lbl)
if lbl.Ignore {
logrus.Debugf("Container %s ignored", container.ID)
return
}
Expand Down

0 comments on commit 045b5bc

Please sign in to comment.