Skip to content

Commit

Permalink
feat: Add optional path to launch configuration
Browse files Browse the repository at this point in the history
Assist with k8s proxy servers

Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
  • Loading branch information
GordonSmith committed Aug 23, 2021
1 parent 4e989e5 commit d2726ca
Show file tree
Hide file tree
Showing 10 changed files with 466 additions and 419 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ This extension adds rich language support for [HPCC Systems](https://hpccsystems

## Recent Highlights

### v2.15.x
* Add `path` option to launch configuration (to assist with proxy servers).

### v2.14.x
* Add `Copy WUID` context menu.

Expand Down Expand Up @@ -256,6 +259,7 @@ Submitting ECL using VS-Code requires specifying the target environment within t
"protocol": "http",
"serverAddress": "localhost",
"port": 8010,
"path": "",
"targetCluster": "hthor",
"rejectUnauthorized": true,
"resultLimit": 100,
Expand Down
15 changes: 15 additions & 0 deletions ecl-sample/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,21 @@
"user": "vscode_user",
"password": ""
},
{
"name": "localhost-proxy",
"type": "ecl",
"request": "launch",
"protocol": "http",
"serverAddress": "localhost",
"port": 8080,
"path": "xxx",
"targetCluster": "thor",
"rejectUnauthorized": true,
"resultLimit": 100,
"timeoutSecs": 60,
"user": "vscode_user",
"password": ""
},
{
"name": "dataland",
"type": "ecl",
Expand Down
Loading

0 comments on commit d2726ca

Please sign in to comment.