formatting

This commit is contained in:
vmorganp
2023-07-04 01:10:54 -07:00
parent f1b29b646b
commit 34b3e565cc
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ type LazyGroup struct {
netInterface string // which network interface to watch traffic on. By default this is eth0 but can sometimes vary
pollRate uint16 // how frequently to poll traffic statistics
ports []uint16 // list of ports, which happens to also be a 16 bit range, how convenient!
sleepMethod string // whether to stop or pause the container
sleepMethod string // whether to stop or pause the container
}
func (lg LazyGroup) MainLoop() {

View File

@@ -138,7 +138,7 @@ func configureFromLabels() map[string]LazyGroup {
netInterface: netInterface,
pollRate: pollRate,
ports: ports,
sleepMethod: sleepMethod,
sleepMethod: sleepMethod,
}
}
}