Remove unnecessary else.

This was flagged by the linter.

Signed-off-by: Paulin Todev <paulin.todev@gmail.com>
This commit is contained in:
Paulin Todev 2023-12-05 18:01:39 +00:00
parent 6a5306a53c
commit 6279497124
No known key found for this signature in database
GPG Key ID: 9A127C7452ED9879
1 changed files with 4 additions and 8 deletions

View File

@ -636,9 +636,8 @@ func main() {
if discMgr == nil {
level.Error(logger).Log("msg", "failed to create a discovery manager scrape")
os.Exit(1)
} else {
discoveryManagerScrape = discMgr
}
discoveryManagerScrape = discMgr
}
{
@ -646,9 +645,8 @@ func main() {
if discMgr == nil {
level.Error(logger).Log("msg", "failed to create a discovery manager notify")
os.Exit(1)
} else {
discoveryManagerNotify = discMgr
}
discoveryManagerNotify = discMgr
}
} else {
{
@ -656,9 +654,8 @@ func main() {
if discMgr == nil {
level.Error(logger).Log("msg", "failed to create a discovery manager scrape")
os.Exit(1)
} else {
discoveryManagerScrape = discMgr
}
discoveryManagerScrape = discMgr
}
{
@ -666,9 +663,8 @@ func main() {
if discMgr == nil {
level.Error(logger).Log("msg", "failed to create a discovery manager notify")
os.Exit(1)
} else {
discoveryManagerNotify = discMgr
}
discoveryManagerNotify = discMgr
}
}