Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
warning message 2
  • Loading branch information
vpandiarajan20 committed Dec 1, 2025
commit 1fad4bac8f4548e63195a2c6694eb1505959f88b
4 changes: 3 additions & 1 deletion cli/ml_training.go
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,9 @@ func MLTrainingScriptTestLocalAction(c *cli.Context, args mlTrainingScriptTestLo
cmd.Stdout = c.App.Writer
cmd.Stderr = c.App.ErrWriter

printf(c.App.Writer, "WARNING: If this is your first time running training, it may take a few minutes to download the container image. This is normal and will not affect the training process.")
printf(c.App.Writer, "WARNING: If this is your first time running training, "+
"it may take a few minutes to download the container image. "+
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A few minutes is a little bit of an understatement :)

"This is normal and will not affect the training process.")

if err := cmd.Run(); err != nil {
// Check if the command was interrupted
Expand Down
Loading