From 7c4e223841519f1d7913f7d9236396af20c94ee4 Mon Sep 17 00:00:00 2001 From: Ilona Shishov Date: Sun, 24 Dec 2023 10:58:41 +0200 Subject: [PATCH] fix: endpoint configuration issue Signed-off-by: Ilona Shishov --- CHANGELOG.md | 2 ++ src/config.ts | 1 - src/constants.ts | 4 +--- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d666fda7..84e3ac9cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ # Change Log +## 0.9.1 (Dec 24th 2023) +- fixes - Resolved endpoint configuration issue by removing EXHORT_DEV_MODE environment configuration parameter. See [PR#672](https://github.com/fabric8-analytics/fabric8-analytics-vscode-extension/pull/672). ## 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 {