Skip to content

Commit

Permalink
Increase max timeout in smoke tests to avoid tutorial endpoint slowness
Browse files Browse the repository at this point in the history
  • Loading branch information
LeiGlobus committed Jan 8, 2025
1 parent c8f1275 commit 12c428c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def pack(self) -> bytes:
# globus_compute_common.messagepack in part because of issues like this
add_ons = (
f"TID={self.task_id};CID={self.container_id};" # type: ignore
f"{self.task_buffer}"
f"{self.task_buffer.decode()}"
)
self.raw_buffer = add_ons.encode("utf-8")

Expand Down
2 changes: 1 addition & 1 deletion smoke_tests/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def tutorial_function_id(compute_test_config):

@pytest.fixture
def timeout_s():
return 60
return 300


class LinearBackoff:
Expand Down

0 comments on commit 12c428c

Please sign in to comment.