Skip to content

Commit d2726ca

Browse files
committed
feat: Add optional path to launch configuration
Assist with k8s proxy servers Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
1 parent 4e989e5 commit d2726ca

10 files changed

Lines changed: 466 additions & 419 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ This extension adds rich language support for [HPCC Systems](https://hpccsystems
1111

1212
## Recent Highlights
1313

14+
### v2.15.x
15+
* Add `path` option to launch configuration (to assist with proxy servers).
16+
1417
### v2.14.x
1518
* Add `Copy WUID` context menu.
1619

@@ -256,6 +259,7 @@ Submitting ECL using VS-Code requires specifying the target environment within t
256259
"protocol": "http",
257260
"serverAddress": "localhost",
258261
"port": 8010,
262+
"path": "",
259263
"targetCluster": "hthor",
260264
"rejectUnauthorized": true,
261265
"resultLimit": 100,

ecl-sample/.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,21 @@
4343
"user": "vscode_user",
4444
"password": ""
4545
},
46+
{
47+
"name": "localhost-proxy",
48+
"type": "ecl",
49+
"request": "launch",
50+
"protocol": "http",
51+
"serverAddress": "localhost",
52+
"port": 8080,
53+
"path": "xxx",
54+
"targetCluster": "thor",
55+
"rejectUnauthorized": true,
56+
"resultLimit": 100,
57+
"timeoutSecs": 60,
58+
"user": "vscode_user",
59+
"password": ""
60+
},
4661
{
4762
"name": "dataland",
4863
"type": "ecl",

0 commit comments

Comments
 (0)