Skip to content

Commit 7c70088

Browse files
jeanp413akosyakov
authored andcommitted
Fix compilation after sync with upstream/main
1 parent 2ed847b commit 7c70088

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/vs/server/node/remote-terminal.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ export function registerRemoteTerminal(services: ServicesAccessor, channelServer
4242
const reconnectConstants: IReconnectConstants = {
4343
graceTime: LocalReconnectConstants.GraceTime,
4444
shortGraceTime: LocalReconnectConstants.ShortGraceTime,
45-
scrollback: configurationService.getValue<number>(TerminalSettingId.PersistentSessionScrollback) ?? 100,
46-
useExperimentalSerialization: configurationService.getValue<boolean>(TerminalSettingId.PersistentSessionExperimentalSerializer) ?? true,
45+
scrollback: configurationService.getValue<number>(TerminalSettingId.PersistentSessionScrollback) ?? 100
4746
};
4847
const ptyHostService = new PtyHostService(reconnectConstants, configurationService, logService, telemetryService);
4948
channelServer.registerChannel(REMOTE_TERMINAL_CHANNEL_NAME, new RemoteTerminalChannelServer(rawURITransformerFactory, logService, ptyHostService));

0 commit comments

Comments
 (0)