Skip to content

Commit ad4bed6

Browse files
committed
Revertting Ibiza redirect to use old test environment query string values
1 parent d093c07 commit ad4bed6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

AzureFunctions.AngularClient/src/app/getting-started/getting-started.component.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -222,14 +222,12 @@ export class GettingStartedComponent implements OnInit, OnDestroy {
222222
let environment = '';
223223
if (window.location.host.indexOf('staging') !== -1) {
224224
// Temporarily redirecting FunctionsNext to use the Canary Ibiza environment.
225-
environment = '?feature.fastmanifest=false&appsvc.env=stage';
226-
// environment = '?websitesextension_functionsstaged=true';
225+
environment = '?feature.fastmanifest=false&websitesextension_functionsstaged=true';
227226

228227
} else if (window.location.host.indexOf('next') !== -1) {
229228

230229
// Temporarily redirecting FunctionsNext to use the Canary Ibiza environment.
231-
environment = '?feature.canmodifystamps=true&BizTalkExtension=canary&WebsitesExtension=canary&feature.fastmanifest=false&appsvc.env=next';
232-
// environment = '?websitesextension_functionsnext=true';
230+
environment = '?feature.canmodifystamps=true&BizTalkExtension=canary&WebsitesExtension=canary&feature.fastmanifest=false&websitesextension_functionsnext=true';
233231
}
234232

235233
window.location.replace(`${portalHostName}/${currentTenant.DomainName}${environment}#resource${armId}`);

0 commit comments

Comments
 (0)