mirror of
https://github.com/astral-sh/setup-uv.git
synced 2026-07-04 03:19:31 +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:
parent
a81585cbb0
commit
7568f55a9a
4 changed files with 6 additions and 6 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue