Skip to content

Commit

Permalink
Fix log messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjhuang committed Sep 11, 2024
1 parent 5b345c2 commit 452a761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/implementation/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@ func (s *DripStrictServerImplementation) ReindexNodes(ctx context.Context, reque
log.Ctx(ctx).Info().Msg("ReindexNodes request received")
err = s.RegistryService.ReindexAllNodes(ctx, s.Client)
if err != nil {
log.Ctx(ctx).Error().Msgf("Failed to list node versions w/ err: %v", err)
log.Ctx(ctx).Error().Msgf("Failed to reindex all nodes w/ err: %v", err)
return drip.ReindexNodes500JSONResponse{Message: "Failed to reindex nodes", Error: err.Error()}, nil
}

Expand Down

0 comments on commit 452a761

Please sign in to comment.