mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-18 14:54:19 +01:00
runtime: virtcontainers: fix govet fieldalignment
Fix structures alignment fixes #2271 Depends-on: github.com/kata-containers/tests#3727 Signed-off-by: Julio Montes <julio.montes@intel.com>
This commit is contained in:
@@ -18,15 +18,18 @@ const (
|
||||
watcherChannelSize = 128
|
||||
)
|
||||
|
||||
// nolint: govet
|
||||
type monitor struct {
|
||||
watchers []chan error
|
||||
sandbox *Sandbox
|
||||
|
||||
wg sync.WaitGroup
|
||||
sync.Mutex
|
||||
|
||||
sandbox *Sandbox
|
||||
checkInterval time.Duration
|
||||
watchers []chan error
|
||||
wg sync.WaitGroup
|
||||
running bool
|
||||
stopCh chan bool
|
||||
checkInterval time.Duration
|
||||
|
||||
running bool
|
||||
}
|
||||
|
||||
func newMonitor(s *Sandbox) *monitor {
|
||||
|
||||
Reference in New Issue
Block a user