We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eda8e41 commit 3e59a96Copy full SHA for 3e59a96
1 file changed
src/core/utils/net.ts
@@ -55,7 +55,7 @@ export async function validateDevServerConfig(context: string, timeout: number)
55
try {
56
spinner.start(`Waiting for ${chalk.green(context)} to be ready`);
57
await waitOn({
58
- resources: [address(hostname, port)],
+ resources: [`tcp:${hostname}:${port}`],
59
delay: 1000, // initial delay in ms, default 0
60
interval: 100, // poll interval in ms, default 250ms
61
simultaneous: 1, // limit to 1 connection per resource at a time
0 commit comments