Skip to content

feat: coder connect integration #482

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 14 commits into from
Prev Previous commit
Next Next commit
fixup
  • Loading branch information
ethanndickson committed Apr 17, 2025
commit a2df5ccad169663e3d0436768ff5b8095b691972
12 changes: 1 addition & 11 deletions src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -496,17 +496,7 @@ export class Commands {
openRecent = args[4] as boolean | undefined
}

try {
await this.openWorkspace(baseUrl, workspaceOwner, workspaceName, workspaceAgent, folderPath, openRecent)
} catch (err) {
const message = getErrorMessage(err, "no response from the server")
this.storage.writeToCoderOutputChannel(`Failed to open workspace: ${message}`)
this.vscodeProposed.window.showErrorMessage("Failed to open workspace", {
detail: message,
modal: true,
useCustom: true,
})
}
await this.openWorkspace(baseUrl, workspaceOwner, workspaceName, workspaceAgent, folderPath, openRecent)
}

/**
Expand Down