chore: drop the pod name from stdout output

This adds unexpected output to the command, making parsing more difficult.
This commit is contained in:
Jose Diaz-Gonzalez
2024-11-04 02:01:08 -05:00
parent b509aa7df1
commit 50244bf8ea

View File

@@ -1177,11 +1177,6 @@ func TriggerSchedulerRun(scheduler string, appName string, envCount int, args []
if err != nil {
return fmt.Errorf("Error waiting for pod to exist: %w", err)
}
for _, pod := range pods {
common.LogQuiet(pod.Name)
}
if !attachToPod {
return nil
}