Skip to content

Commit

Permalink
Increase timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Yuki Iwai <[email protected]>
  • Loading branch information
tenzen-y committed Nov 8, 2024
1 parent 09e73b5 commit b01ce34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/mpi_job_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ func waitForCompletion(ctx context.Context, mpiJob *kubeflow.MPIJob) *kubeflow.M
var err error

ginkgo.By("Waiting for MPIJob to finish")
err = wait.PollUntilContextTimeout(ctx, waitInterval, foreverTimeout, false, func(ctx context.Context) (bool, error) {
err = wait.PollUntilContextTimeout(ctx, waitInterval, 10*time.Minute, false, func(ctx context.Context) (bool, error) {
updatedJob, err := mpiClient.KubeflowV2beta1().MPIJobs(mpiJob.Namespace).Get(ctx, mpiJob.Name, metav1.GetOptions{})
if err != nil {
return false, err
Expand Down

0 comments on commit b01ce34

Please sign in to comment.