Skip to content

Commit a3054fc

Browse files
committed
fix: update dependencies and improve session management
- Updated various dependencies in package.json primarily to fix the btoa polyfill issue with unicode chars - Refactored session management in session.ts: - Removed credential migration on initialization (replaced with migrate on use). - Enhanced session switching logic to handle credentials more effectively. - Improved configuration updates to avoid unnecessary triggers. Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
1 parent b3f596e commit a3054fc

File tree

5 files changed

+570
-583
lines changed

5 files changed

+570
-583
lines changed

ecl-sample/.vscode/launch.json

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"rejectUnauthorized": true,
1616
"resultLimit": 100,
1717
"timeoutSecs": 60,
18-
"user": "gordon"
18+
"user": "gordon",
19+
"utf8-test-pw": "Pąsswörd123!🔒"
1920
},
2021
{
2122
"name": "localhost2",
@@ -28,7 +29,22 @@
2829
"rejectUnauthorized": true,
2930
"resultLimit": 100,
3031
"timeoutSecs": 60,
31-
"user": "gordon2"
32+
"user": "gordon2",
33+
"test-pw": "p@w*"
34+
},
35+
{
36+
"name": "localhost3",
37+
"type": "ecl",
38+
"request": "launch",
39+
"protocol": "http",
40+
"serverAddress": "localhost",
41+
"port": 8010,
42+
"targetCluster": "thor",
43+
"rejectUnauthorized": true,
44+
"resultLimit": 100,
45+
"timeoutSecs": 60,
46+
"user": "gordon3",
47+
"test-pw": "invalid"
3248
},
3349
{
3450
"name": "play",

0 commit comments

Comments
 (0)