mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-09-05 06:25:08 +09:00
chore: Update dist
This commit is contained in:
+6
-2
@@ -16927,7 +16927,9 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
|
|||||||
reject(abortError);
|
reject(abortError);
|
||||||
}, "onAbort");
|
}, "onAbort");
|
||||||
if (typeof abortSignal.addEventListener === "function") {
|
if (typeof abortSignal.addEventListener === "function") {
|
||||||
abortSignal.addEventListener("abort", onAbort);
|
const signal = abortSignal;
|
||||||
|
signal.addEventListener("abort", onAbort, { once: true });
|
||||||
|
req.once("close", () => signal.removeEventListener("abort", onAbort));
|
||||||
} else {
|
} else {
|
||||||
abortSignal.onabort = onAbort;
|
abortSignal.onabort = onAbort;
|
||||||
}
|
}
|
||||||
@@ -17219,7 +17221,9 @@ var _NodeHttp2Handler = class _NodeHttp2Handler {
|
|||||||
rejectWithDestroy(abortError);
|
rejectWithDestroy(abortError);
|
||||||
}, "onAbort");
|
}, "onAbort");
|
||||||
if (typeof abortSignal.addEventListener === "function") {
|
if (typeof abortSignal.addEventListener === "function") {
|
||||||
abortSignal.addEventListener("abort", onAbort);
|
const signal = abortSignal;
|
||||||
|
signal.addEventListener("abort", onAbort, { once: true });
|
||||||
|
req.once("close", () => signal.removeEventListener("abort", onAbort));
|
||||||
} else {
|
} else {
|
||||||
abortSignal.onabort = onAbort;
|
abortSignal.onabort = onAbort;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user