-
Notifications
You must be signed in to change notification settings - Fork 313
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
Vscode server updates don't follow update.mode
#10612
Comments
update.mode
update.mode
To confirm, this is for Remote - SSH? The server on the remote host must match your local client version. If your local VS Code does not update, a previously downloaded version on the remote will be used (if present). Please do provide logs if you're seeing otherwise, and i'll be happy to dig in |
Yes, for ssh. Will update here, thanks! |
Yeah I think it may be a client-side update issue, and then the remote just follows that version. I have
in my 'Main' logs, so glancing at the code it seems it's reading the settings properly- I have applyUpdate() has other callsites though. Maybe there should be an extra setting that even these callsites can't get around, that is checked in applyUpdate()? I think there may be extensions forcing updates. I suspect copilot is forcing these updates, given how reliant it is on new vscode features- https://code.visualstudio.com/updates/v1_97 |
The server version on the remote must match the client version exactly (same commit). If you want the server to not "update" you'll need to not update the client VS Code that you're connecting with. Does that make sense? Due to this requirement a setting does not make sense here since it cannot be honored. |
Right, sorry for the noise- This was definitely an issue with the client-side version being updated, not with the remote side. We also don't think was from vscode attempting autoupdates |
Related: #7211
I've tried with both
"update.mode": "none"
and"update.mode": "manual"
in my user settings and it still automatically updates. I'll try to copy logs next time it happens.The text was updated successfully, but these errors were encountered: