Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/aspect/run/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ func (runner *Run) runWatch(ctx context.Context, bazelCmd []string, bzlCommandSt

logger.Infof("initial --watch build: %v", initCmd.Args)

if err := runner.runCmd(initCtx, initCmd, "Run.Subscribe.Build"); err != nil {
if err := runner.runCmd(initCtx, initCmd, "Run.Init.Build"); err != nil {
return nil, nil, fmt.Errorf("initial bazel command failed: %w", err)
}

Expand Down Expand Up @@ -392,7 +392,7 @@ func (runner *Run) runWatch(ctx context.Context, bazelCmd []string, bzlCommandSt
}

// Init() with the full runfiles list
cctx, initCycleTrace := runner.tracer.Start(initCtx, "Run.Cycle")
cctx, initCycleTrace := runner.tracer.Start(initCtx, "Run.Init.Cycle")
defer func() {
if retErr != nil {
initCycleTrace.SetStatus(codes.Error, retErr.Error())
Expand Down
Loading