We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 967c786 commit 5e88082Copy full SHA for 5e88082
extensions/gitpod/src/remoteConnector.ts
@@ -458,16 +458,11 @@ export default class RemoteConnector extends Disposable {
458
}).connect({
459
host: sshDestInfo.hostName,
460
username: sshDestInfo.user,
461
- authHandler(methodsLeft, _partialSuccess, callback) {
462
- if (!methodsLeft) {
463
- callback({
464
- type: 'password',
465
- username: workspaceId,
466
- password: ownerToken
467
- });
468
- } else {
469
- callback(false);
470
- }
+ authHandler(_methodsLeft, _partialSuccess, _callback) {
+ return {
+ type: 'none',
+ username: sshDestInfo.user,
+ };
471
},
472
hostVerifier(hostKey) {
473
// We didn't specify `hostHash` so `hashedKey` is a Buffer object
0 commit comments