mirror of
https://github.com/astral-sh/setup-uv.git
synced 2026-06-05 03:16:29 +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
@@ -84,8 +84,8 @@ async function run(): Promise<void> {
|
||||
if (inputs.enableCache) {
|
||||
await restoreCache(inputs, detectedPythonVersion);
|
||||
}
|
||||
// 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));
|
||||
process.exit(0);
|
||||
} catch (err) {
|
||||
core.setFailed((err as Error).message);
|
||||
|
||||
Reference in New Issue
Block a user