mirror of
https://github.com/astral-sh/setup-uv.git
synced 2026-06-09 11:30:42 +00:00
increase libuv-workaround timeout to 100ms (#880)
This should fix https://github.com/astral-sh/setup-uv/issues/686#issuecomment-4389301919
This commit is contained in:
committed by
GitHub
parent
a81585cbb0
commit
7568f55a9a
@@ -20,8 +20,8 @@ export async function run(): Promise<void> {
|
||||
} else {
|
||||
core.info("save-cache is false. Skipping save cache step.");
|
||||
}
|
||||
// https://github.com/nodejs/node/issues/56645#issuecomment-3077594952
|
||||
await new Promise((resolve) => setTimeout(resolve, 50));
|
||||
// https://github.com/nodejs/node/issues/56645#issuecomment-3924958861
|
||||
await new Promise((resolve) => setTimeout(resolve, 100));
|
||||
|
||||
// node will stay alive if any promises are not resolved,
|
||||
// which is a possibility if HTTP requests are dangling
|
||||
|
||||
Reference in New Issue
Block a user