Skip to content

Commit

Permalink
fix: wrap error
Browse files Browse the repository at this point in the history
  • Loading branch information
safeer committed Jul 22, 2024
1 parent c876897 commit 7580e68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/ftl/cmd_serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func (s *serveCmd) run(ctx context.Context, projConfig projectconfig.Config, ini

err = observability.Init(ctx, "ftl-serve", ftl.Version, s.ObservabilityConfig)
if err != nil {
return err
return fmt.Errorf("observability init failed: %w", err)
}

wg, ctx := errgroup.WithContext(ctx)
Expand Down

0 comments on commit 7580e68

Please sign in to comment.