We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c2362b commit 7bc8b42Copy full SHA for 7bc8b42
packages/core/src/shared/awsClientBuilderV3.ts
@@ -213,6 +213,13 @@ export function overwriteEndpoint(
213
return next(args)
214
}
215
216
+/**
217
+ * Overwrite agents behavior and add the keepAliveHeader. This is needed due to
218
+ * https://github.com/microsoft/vscode/issues/173861.
219
+ * @param next
220
+ * @param args
221
+ * @returns
222
+ */
223
export function addKeepAliveHeader(next: BuildHandler<any, any>, args: any) {
224
const request = args.request
225
if (HttpRequest.isInstance(request)) {
0 commit comments