diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d666fda7..f7e380a88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ # Change Log +## 0.9.1 (Dec 24th 2023) +- fixes - endpoint configuration issue. ## 0.9.0 (Dec 21th 2023) - informational - Service Preview release of Red Hat Dependency Analytics (RHDA) extension. - informational - Configuration names for all supported executable paths in the extension settings have changed. These executable paths are only used for the analysis. diff --git a/src/config.ts b/src/config.ts index 44cb7ee40..32afe20c6 100644 --- a/src/config.ts +++ b/src/config.ts @@ -89,7 +89,6 @@ class Config { process.env['VSCEXT_EXHORT_PIP3_PATH'] = this.exhortPip3Path; process.env['VSCEXT_EXHORT_PYTHON_PATH'] = this.exhortPythonPath; process.env['VSCEXT_EXHORT_PIP_PATH'] = this.exhortPipPath; - process.env['EXHORT_DEV_MODE'] = GlobalState.EXHORT_DEV_MODE; } /** diff --git a/src/constants.ts b/src/constants.ts index 521e687a5..9000cc88d 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -6,9 +6,7 @@ export enum GlobalState { // to store the current version string to localStorage VERSION = 'fabric8Version', // to store the UTM source for tracking purposes - UTM_SOURCE = 'vscode', - // to store the current exhort environment mode - EXHORT_DEV_MODE = 'true' + UTM_SOURCE = 'vscode' } export enum StatusMessages {