Skip to content

Commit dc092d6

Browse files
committed
done
1 parent cfbc26e commit dc092d6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/e2e-playwright/utils/wait_for_services.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
)
5050

5151
_WAIT_BEFORE_RETRY = 10
52-
_MAX_WAIT_TIME = 5 * 60
52+
_MAX_WAIT_TIME = 10 * 60
5353

5454
# SEE https://docs.docker.com/engine/swarm/how-swarm-mode-works/swarm-task-states/
5555

@@ -85,7 +85,9 @@ def _get_status_emoji_and_color(state: str) -> tuple[str, str]:
8585
return "❓", "white"
8686

8787

88-
def _create_services_table(service_statuses: dict[str, dict[str, Any]]) -> Table:
88+
def _create_services_table(
89+
service_statuses: dict[str, dict[str, Any]],
90+
) -> Table: # noqa: C901
8991
"""Create a rich table showing service statuses."""
9092
table = Table(
9193
title="🐳 Docker Swarm Services Status",

0 commit comments

Comments
 (0)