From 34b3e565cce4c539de1a8a09f9005bc5d19af0ca Mon Sep 17 00:00:00 2001 From: vmorganp <31448722+vmorganp@users.noreply.github.com> Date: Tue, 4 Jul 2023 01:10:54 -0700 Subject: [PATCH] formatting --- src/group.go | 2 +- src/lazytainer.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/group.go b/src/group.go index 4db6af6..00d1938 100644 --- a/src/group.go +++ b/src/group.go @@ -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() { diff --git a/src/lazytainer.go b/src/lazytainer.go index 13b71d7..93023fb 100644 --- a/src/lazytainer.go +++ b/src/lazytainer.go @@ -138,7 +138,7 @@ func configureFromLabels() map[string]LazyGroup { netInterface: netInterface, pollRate: pollRate, ports: ports, - sleepMethod: sleepMethod, + sleepMethod: sleepMethod, } } }