Skip to content

Commit

Permalink
simplify the stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
udsamani committed Sep 18, 2024
1 parent cf859b0 commit 0af8d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/util/printer/job_progress_printer.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func (j *JobProgressPrinter) PrintJobProgress(ctx context.Context, job *models.J
if errors.Is(jobErr, context.DeadlineExceeded) {
cmd.Println("\nJob is still running in the background. Timeout reached.")
cmd.Println("To check the job status later, use:")
cmd.Printf("\t%s job describe %s\n", os.Args[0], jobID)
cmd.Printf("bacalhau job describe %s\n", os.Args[0], jobID)
return nil
}

Expand Down

0 comments on commit 0af8d26

Please sign in to comment.