Skip to content

Commit

Permalink
chore: set health check interval to 15sec
Browse files Browse the repository at this point in the history
  • Loading branch information
y-eight committed Dec 6, 2023
1 parent 89208fe commit 5f2c991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/checks/health.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func (h *Health) Run(ctx context.Context) error {
log := logger.FromContext(ctx)

for {
delay := time.Minute
delay := time.Second * 15
log.Info("Next health check will run after delay", "delay", delay.String())
select {
case <-ctx.Done():
Expand Down

0 comments on commit 5f2c991

Please sign in to comment.