Skip to content

Commit fdaf148

Browse files
committed
TODO: Clean up this
1 parent a3dbd63 commit fdaf148

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/heartbeat.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ export class HeartbeatManager extends Disposable {
7777

7878
private async sendHeartBeat(wasClosed?: true) {
7979
const suffix = wasClosed ? 'was closed heartbeat' : 'heartbeat';
80-
if (wasClosed) {
81-
this.logger.trace('sending ' + suffix);
82-
}
80+
// if (wasClosed) {
81+
this.logger.trace('sending ' + suffix);
82+
// }
8383

8484
try {
8585
await withServerApi(this.accessToken, this.gitpodHost, service => service.server.sendHeartBeat({ instanceId: this.instanceId, wasClosed }), this.logger);

src/remoteConnector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ export default class RemoteConnector extends Disposable {
738738
vscode.commands.executeCommand(
739739
'vscode.openFolder',
740740
vscode.Uri.parse(`vscode-remote://ssh-remote+${sshDestination}${uri.path || '/'}`),
741-
{ forceNewWindow: false }
741+
{ forceNewWindow: false } // REVERT THIS
742742
);
743743
}
744744

0 commit comments

Comments
 (0)