Skip to content

Commit 6655292

Browse files
authored
Fixing CDN and ramping up fallback version
Fixing CDN and ramping up fallback version
1 parent 8c43968 commit 6655292

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/devtoolsPanel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ export class DevToolsPanel {
600600

601601
private setCdnParameters(msg: {revision: string, isHeadless: boolean}) {
602602
this.currentRevision = msg.revision;
603-
this.devtoolsBaseUri = `https://devtools.azureedge.net/serve_file/${this.currentRevision}/vscode_app.html`;
603+
this.devtoolsBaseUri = `https://msedgedevtools.microsoft.com/serve_file/${this.currentRevision}/vscode_app.html`;
604604
this.isHeadless = msg.isHeadless;
605605
this.update();
606606

src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ export const SETTINGS_DEFAULT_ENTRY_POINT = 'index.html';
110110
const WIN_APP_DATA = process.env.LOCALAPPDATA || '/';
111111
const msEdgeBrowserMapping: Map<BrowserFlavor, IBrowserPath> = new Map<BrowserFlavor, IBrowserPath>();
112112

113-
// Current Revision: 132.0.2957.140
114-
export const CDN_FALLBACK_REVISION = '@a81e27b375d4f113f79997ac7f2bb49b93fbb84d';
113+
// Current Revision: 137.0.7151.69
114+
export const CDN_FALLBACK_REVISION = '@f3affdcf267b3645b45a2fc38dcf44cb11cc4091';
115115

116116
/** Build-specified flags. */
117117
declare const DEBUG: boolean;

0 commit comments

Comments
 (0)