Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: endpoint configuration issue #672

Merged
merged 1 commit into from
Dec 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 - 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.
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