Skip to content

Commit

Permalink
fix: endpoint configuration issue
Browse files Browse the repository at this point in the history
Signed-off-by: Ilona Shishov <[email protected]>
  • Loading branch information
IlonaShishov committed Dec 24, 2023
1 parent f3cb532 commit 3e4da04
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 0 additions & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down
4 changes: 1 addition & 3 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 3e4da04

Please sign in to comment.