We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc28e2d commit fffadb2Copy full SHA for fffadb2
packages/testcontainers/src/generic-container/inspect-container-util-ports-exposed.ts
@@ -13,9 +13,9 @@ export async function inspectContainerUntilPortsExposed(
13
inspectFn: () => Promise<ContainerInspectInfo>,
14
ports: PortWithOptionalBinding[],
15
containerId: string,
16
- timeout = 5000
+ timeout = 10_000
17
): Promise<Result> {
18
- const result = await new IntervalRetry<Result, Error>(100).retryUntil(
+ const result = await new IntervalRetry<Result, Error>(250).retryUntil(
19
async () => {
20
const inspectResult = await inspectFn();
21
const mappedInspectResult = mapInspectResult(inspectResult);
0 commit comments