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:
+1
-1
@@ -1684,7 +1684,7 @@ The following npm packages may be included in this product:
|
|||||||
- @smithy/credential-provider-imds@4.3.7
|
- @smithy/credential-provider-imds@4.3.7
|
||||||
- @smithy/fetch-http-handler@5.4.6
|
- @smithy/fetch-http-handler@5.4.6
|
||||||
- @smithy/is-array-buffer@2.2.0
|
- @smithy/is-array-buffer@2.2.0
|
||||||
- @smithy/node-http-handler@4.7.6
|
- @smithy/node-http-handler@4.7.7
|
||||||
- @smithy/signature-v4@5.4.6
|
- @smithy/signature-v4@5.4.6
|
||||||
- @smithy/util-buffer-from@2.2.0
|
- @smithy/util-buffer-from@2.2.0
|
||||||
- @smithy/util-utf8@2.3.0
|
- @smithy/util-utf8@2.3.0
|
||||||
|
|||||||
+6
-4
@@ -34117,8 +34117,8 @@ For more information, please visit: ` + STATIC_STABILITY_DOC_URL);
|
|||||||
var require_dist_cjs9 = __commonJS({
|
var require_dist_cjs9 = __commonJS({
|
||||||
"node_modules/@smithy/node-http-handler/dist-cjs/index.js"(exports2) {
|
"node_modules/@smithy/node-http-handler/dist-cjs/index.js"(exports2) {
|
||||||
"use strict";
|
"use strict";
|
||||||
var node_https = require("node:https");
|
|
||||||
var protocols2 = (init_protocols(), __toCommonJS(protocols_exports));
|
var protocols2 = (init_protocols(), __toCommonJS(protocols_exports));
|
||||||
|
var node_https = require("node:https");
|
||||||
var node_stream = require("node:stream");
|
var node_stream = require("node:stream");
|
||||||
var http22 = require("node:http2");
|
var http22 = require("node:http2");
|
||||||
function buildAbortError(abortSignal) {
|
function buildAbortError(abortSignal) {
|
||||||
@@ -34504,7 +34504,8 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
|
|||||||
socketAcquisitionWarningTimeout,
|
socketAcquisitionWarningTimeout,
|
||||||
throwOnRequestTimeout,
|
throwOnRequestTimeout,
|
||||||
httpAgentProvider: async () => {
|
httpAgentProvider: async () => {
|
||||||
const { Agent: Agent9, request } = await import("node:http");
|
const node_http = await import("node:http");
|
||||||
|
const { Agent: Agent9, request } = node_http.default ?? node_http;
|
||||||
hRequest = request;
|
hRequest = request;
|
||||||
hAgent = Agent9;
|
hAgent = Agent9;
|
||||||
if (httpAgent instanceof hAgent || typeof httpAgent?.destroy === "function") {
|
if (httpAgent instanceof hAgent || typeof httpAgent?.destroy === "function") {
|
||||||
@@ -34749,6 +34750,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
|
|||||||
return this.connectOptions === void 0 ? http22.connect(url) : http22.connect(url, this.connectOptions);
|
return this.connectOptions === void 0 ? http22.connect(url) : http22.connect(url, this.connectOptions);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
var { constants: constants4 } = http22;
|
||||||
var NodeHttp2Handler = class _NodeHttp2Handler {
|
var NodeHttp2Handler = class _NodeHttp2Handler {
|
||||||
config;
|
config;
|
||||||
configProvider;
|
configProvider;
|
||||||
@@ -34838,8 +34840,8 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
|
|||||||
}
|
}
|
||||||
const clientHttp2Stream = session.request({
|
const clientHttp2Stream = session.request({
|
||||||
...request.headers,
|
...request.headers,
|
||||||
[http22.constants.HTTP2_HEADER_PATH]: path4,
|
[constants4.HTTP2_HEADER_PATH]: path4,
|
||||||
[http22.constants.HTTP2_HEADER_METHOD]: method
|
[constants4.HTTP2_HEADER_METHOD]: method
|
||||||
});
|
});
|
||||||
if (effectiveRequestTimeout) {
|
if (effectiveRequestTimeout) {
|
||||||
clientHttp2Stream.setTimeout(effectiveRequestTimeout, () => {
|
clientHttp2Stream.setTimeout(effectiveRequestTimeout, () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user