Skip to content

Commit

Permalink
Merge pull request #174 from gianarb/fix/manager_arp_return_value
Browse files Browse the repository at this point in the history
Catch return value for StartLeaderCluster
  • Loading branch information
thebsdbox authored Mar 3, 2021
2 parents 2988c62 + 3744f05 commit 4c6fa47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/manager/manager_arp.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (sm *Manager) startARP() error {
}

go func() {
cpCluster.StartLeaderCluster(sm.config, clusterManager, nil)
err := cpCluster.StartLeaderCluster(sm.config, clusterManager, nil)
if err != nil {
log.Errorf("Control Pane Error [%v]", err)
// Trigger the shutdown of this manager instance
Expand Down

0 comments on commit 4c6fa47

Please sign in to comment.