Skip to content

Commit 1f7bca9

Browse files
committed
fix name collision
Signed-off-by: Markus Blaschke <[email protected]>
1 parent e8cf2e1 commit 1f7bca9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ func main() {
3838
log.Infof("starting kube-pool-manager v%s (%s; %s; by %v)", gitTag, gitCommit, runtime.Version(), Author)
3939
log.Info(string(opts.GetJson()))
4040

41-
manager := manager.KubePoolManager{
41+
poolManager := manager.KubePoolManager{
4242
Opts: opts,
4343
Config: parseAppConfig(opts.Config),
4444
}
45-
manager.Init()
46-
manager.Start()
45+
poolManager.Init()
46+
poolManager.Start()
4747

4848
log.Infof("starting http server on %s", opts.Server.Bind)
4949
startHttpServer()

0 commit comments

Comments
 (0)