Skip to content

Commit

Permalink
alter timeout in distributed config group
Browse files Browse the repository at this point in the history
  • Loading branch information
leej3 committed Apr 24, 2024
1 parent 5df820f commit c30dfe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ignite/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def distributed_context_single_node_gloo(local_rank, world_size):
"world_size": world_size,
"rank": local_rank,
"init_method": init_method,
"timeout": timedelta(seconds=60),
"timeout": timedelta(seconds=30),
}
yield _create_dist_context(dist_info, local_rank)
_destroy_dist_context()
Expand Down Expand Up @@ -423,7 +423,7 @@ def distributed(request, local_rank, world_size):
dist_info["backend"] = "gloo"
from datetime import timedelta

dist_info["timeout"] = timedelta(seconds=60)
dist_info["timeout"] = timedelta(seconds=30)
yield _create_dist_context(dist_info, local_rank)
_destroy_dist_context()
if temp_file:
Expand Down

0 comments on commit c30dfe2

Please sign in to comment.