Skip to content

Commit

Permalink
Revert "feat(trace): allow Trace Viewer to include credentials when f…
Browse files Browse the repository at this point in the history
…etching traces cross-origin (#28502)" (#29024)

This reverts commit 3f3f332.

References #29019.
  • Loading branch information
dgozman committed Jan 17, 2024
1 parent c829198 commit 300a012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/trace-viewer/src/traceModelBackends.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class ZipTraceModelBackend implements TraceModelBackend {
this._traceURL = traceURL;
zipjs.configure({ baseURL: self.location.href } as any);
this._zipReader = new zipjs.ZipReader(
new zipjs.HttpReader(formatUrl(traceURL), { mode: 'cors', credentials: 'include', preventHeadRequest: true } as any),
new zipjs.HttpReader(formatUrl(traceURL), { mode: 'cors', preventHeadRequest: true } as any),
{ useWebWorkers: false });
this._entriesPromise = this._zipReader.getEntries({ onprogress: progress }).then(entries => {
const map = new Map<string, zip.Entry>();
Expand Down

0 comments on commit 300a012

Please sign in to comment.