Skip to content

Commit

Permalink
fix(health-agent): initial delay for the light client start
Browse files Browse the repository at this point in the history
  • Loading branch information
artemijspavlovs committed Nov 25, 2024
1 parent 377e0f0 commit a58c09e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/healthagent/healthagent.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (

func Start(home string, l *log.Logger) {
for {
time.Sleep(15 * time.Second)
var healthy bool
localEndpoint := "localhost"
defaultRaMetricPort := "2112"
Expand Down Expand Up @@ -91,7 +92,6 @@ func Start(home string, l *log.Logger) {
}

healthy = true
time.Sleep(15 * time.Second)
}
}

Expand Down

0 comments on commit a58c09e

Please sign in to comment.