From ef53f4e32891a69dd4de934d3ef88ff8980c7806 Mon Sep 17 00:00:00 2001 From: Peter Hedenskog Date: Thu, 5 Jun 2025 09:06:20 +0200 Subject: [PATCH] Try longer wait for ... GitHub Actions --- lib/tc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tc.js b/lib/tc.js index 4debd46..6ee76db 100644 --- a/lib/tc.js +++ b/lib/tc.js @@ -15,7 +15,7 @@ async function getDefaultInterface() { } else if (result.stdout.length === 0) { // lets do one retry // The GitHub Actions sometimes cannot find the interface - await delay(1000); + await delay(3000); const result = await shell(command); if (result.stdout.length === 0) { const result = await shell('sudo ip route show');