File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ declare module 'process' {
3232 HADRON_METRICS_SEGMENT_API_KEY ?: string ;
3333 HADRON_METRICS_SEGMENT_HOST ?: string ;
3434 HADRON_AUTO_UPDATE_ENDPOINT : string ;
35+ HADRON_AUTO_UPDATE_ENDPOINT_OVERRIDE ?: string ;
3536 COMPASS_ATLAS_SERVICE_UNAUTH_BASE_URL_OVERRIDE ?: string ;
3637 COMPASS_CLIENT_ID_OVERRIDE ?: string ;
3738 COMPASS_E2E_SKIP_ATLAS_SIGNIN ?: string ;
Original file line number Diff line number Diff line change @@ -739,7 +739,9 @@ class CompassAutoUpdateManager {
739739 }
740740
741741 this . autoUpdateOptions = {
742- endpoint : process . env . HADRON_AUTO_UPDATE_ENDPOINT ,
742+ endpoint :
743+ process . env . HADRON_AUTO_UPDATE_ENDPOINT_OVERRIDE ??
744+ process . env . HADRON_AUTO_UPDATE_ENDPOINT ,
743745 product : product ,
744746 channel : process . env . HADRON_CHANNEL ,
745747 platform : process . platform ,
You can’t perform that action at this time.
0 commit comments