We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c99e634 commit 75bb17cCopy full SHA for 75bb17c
src/remote.ts
@@ -136,7 +136,6 @@ export class Remote {
136
buildComplete = r
137
}),
138
)
139
- this.vscodeProposed.window.showInformationMessage("Starting workspace...")
140
workspace = {
141
...workspace,
142
latest_build: await startWorkspace(workspace.id),
@@ -255,7 +254,7 @@ export class Remote {
255
254
const watchURL = new URL(`${this.storage.getURL()}/api/v2/workspaces/${workspace.id}/watch`)
256
const eventSource = new EventSource(watchURL.toString(), {
257
headers: {
258
- "Coder-Session-Token": this.storage.getSessionToken(),
+ "Coder-Session-Token": await this.storage.getSessionToken(),
259
},
260
})
261
eventSource.addEventListener("open", () => {
0 commit comments