Skip to content

Commit 699336c

Browse files
SCAL-322334: Fixed devcontainer workspace folder
1 parent d0b896e commit 699336c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

rest-api/csharp-sdk/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"version": "20"
77
}
88
},
9-
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}/demos/csharp_sdk",
9+
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}/rest-api/csharp-sdk",
1010
"postCreateCommand": "cd frontend && npm install",
1111
"forwardPorts": [5000, 5173],
1212
"portsAttributes": {

rest-api/csharp-sdk/backend/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
// HttpClient/HttpClientHandler via the legacy constructors.
2929
// ─────────────────────────────────────────────────────────────────────────────
3030

31-
string host = Environment.GetEnvironmentVariable("TS_HOST") ?? "https://172.32.25.218:8443";
32-
string user = Environment.GetEnvironmentVariable("TS_USER") ?? "tsadmin";
33-
string pass = Environment.GetEnvironmentVariable("TS_PASS") ?? "4Xyc1f%[H^3L";
31+
string host = Environment.GetEnvironmentVariable("TS_HOST") ?? "";
32+
string user = Environment.GetEnvironmentVariable("TS_USER") ?? "";
33+
string pass = Environment.GetEnvironmentVariable("TS_PASS") ?? "";
3434

3535
var api = await ThoughtSpotRestApi.CreateAsync(new ApiClientConfiguration
3636
{

0 commit comments

Comments
 (0)