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 4b48304 commit 334795dCopy full SHA for 334795d
src/vs/platform/extensionManagement/common/extensionGalleryService.ts
@@ -923,12 +923,14 @@ abstract class AbstractExtensionGalleryService implements IExtensionGalleryServi
923
924
const commonHeaders = await this.commonHeadersPromise;
925
const data = JSON.stringify(query.raw);
926
+ const { sessionId } = await this.telemetryService.getTelemetryInfo();
927
const headers = {
928
...commonHeaders,
929
'Content-Type': 'application/json',
930
'Accept': 'application/json;api-version=3.0-preview.1',
931
'Accept-Encoding': 'gzip',
- 'Content-Length': String(data.length)
932
+ 'Content-Length': String(data.length),
933
+ 'VSCode-SessionId': sessionId
934
};
935
936
const startTime = new Date().getTime();
0 commit comments