Add comment to clarify process.exit(0)

Copied from https://github.com/actions/cache/pull/1217
This commit is contained in:
Kevin Stillhammer 2024-11-23 11:56:09 +01:00
parent caf0cab7a6
commit 6a57cf322f
No known key found for this signature in database
2 changed files with 10 additions and 0 deletions

5
dist/save-cache/index.js generated vendored
View file

@ -82523,6 +82523,11 @@ function run() {
const err = error;
core.setFailed(err.message);
}
// node will stay alive if any promises are not resolved,
// which is a possibility if HTTP requests are dangling
// due to retries or timeouts. We know that if we got here
// that all promises that we care about have successfully
// resolved, so simply exit with success.
process.exit(0);
});
}

View file

@ -20,6 +20,11 @@ export async function run(): Promise<void> {
const err = error as Error;
core.setFailed(err.message);
}
// node will stay alive if any promises are not resolved,
// which is a possibility if HTTP requests are dangling
// due to retries or timeouts. We know that if we got here
// that all promises that we care about have successfully
// resolved, so simply exit with success.
process.exit(0);
}