Skip to content

Commit 02d05d0

Browse files
authored
Merge pull request #481 from KxSystems/ee-double
Fix for double error message with data sources
2 parents 2cd3916 + dc86730 commit 02d05d0

File tree

3 files changed

+44
-32
lines changed

3 files changed

+44
-32
lines changed

package-lock.json

Lines changed: 42 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@
961961
"bracketSameLine": true
962962
},
963963
"devDependencies": {
964-
"@shoelace-style/shoelace": "2.17.1",
964+
"@shoelace-style/shoelace": "2.19.1",
965965
"@types/fs-extra": "^11.0.4",
966966
"@types/glob": "^8.1.0",
967967
"@types/graceful-fs": "^4.1.9",

src/commands/dataSourceCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export async function runDataSource(
198198
}
199199
} catch (error) {
200200
window.showErrorMessage((error as Error).message);
201-
kdbOutputLog(`[DATASOURCE] ${(error as Error).message}`, "ERROR");
201+
kdbOutputLog(`[DATASOURCE] ${(error as Error).message}`, "ERROR", true);
202202
DataSourcesPanel.running = false;
203203
} finally {
204204
DataSourcesPanel.running = false;

0 commit comments

Comments
 (0)