Skip to content
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

[remote cli] difftool on newly created files cancels the diff and completely closes the workspace #135634

Closed
dahjelle opened this issue Jan 29, 2021 · 12 comments
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug insiders-released Patch has been released in VS Code Insiders remote Remote system operations issues verified Verification succeeded
Milestone

Comments

@dahjelle
Copy link

  • VSCode Version: 1.52.1
  • Local OS Version: macOS 11.1
  • Remote OS Version: CentOS Linux release 7.5.1804
  • Remote Extension/Connection Type: SSH

Steps to Reproduce:

  1. Connect to an SSH remote and open a directory that has a git repository. (I'm using a workspace for this.)
  2. Configure code as an available difftool [1].
  3. Create, save, and stage a new file.
  4. Run git difftool --tool=code --cached. [2]

Expected behavior:

  1. The VS Code editor shows the new file in the same window/workspace.
  2. Closing the "diff" of the new file should continue with other files in the diff.

Actual behavior:

  1. VS Code closes the workspace, opens a new window connected to the remote, and shows the file.
  2. Closing the "diff" of the new file completely stops the diff. (If there are multiple files in the comparison, other files are not shown.)
  3. Since the original workspace window is closed, I need to re-open the workspace to continue.

Notes

[1] I'm using this configuration in .git/config:

[difftool "code"]
    cmd = code "$LOCAL" "$REMOTE" --diff --wait

[2] This issue can also be reproduced looking at any diff that includes a file that has been newly created, and does not have a "old" version to compare against.

Does this issue occur when you try this locally?: No
Does this issue occur when you try this locally and all extensions are disabled?: No

@roblourens
Copy link
Member

Does it work if you add the --reuse-window flag?

@github-actions
Copy link

This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines.

Happy Coding!

@dahjelle
Copy link
Author

Sorry for my delayed response — can we please re-open this, as it is still an issue?

@roblourens I just tried using the --reuse-window flag, and still had the same result.

My .git/config now shows:

[difftool "code"]
    cmd = code "$LOCAL" "$REMOTE" --diff --wait --reuse-window

@dahjelle
Copy link
Author

I just downloaded the latest VSCode release, and still reproduced the issue. Can this issue be re-opened, please? :-)

@tanhakabir
Copy link
Contributor

Hey @dahjelle would you also be able to share your logs with us if you're still having this issue?

@dahjelle
Copy link
Author

dahjelle commented Oct 9, 2021

Yes, I can still reproduce this issue, as of 1.61.0.

I'm not sure which logs that you are looking for. Since the original workspace is closed, there's not a lot of stuff in the logs, but here goes: all the logs I got via the Developer: Show Logs command.

Extension Host Logs

[2021-10-09 17:31:01.182] [exthost] [info] extension host started
[2021-10-09 17:31:01.183] [exthost] [info] Skipping acquiring lock for /Users/XXXXXXXXXX/Library/Application Support/Code/User/workspaceStorage/fa68b41745a87b3d484f44920af24b3a.
[2021-10-09 17:31:01.228] [exthost] [info] ExtensionService#_doActivateExtension ms-vscode-remote.remote-ssh, startup: false, activationEvent: 'onResolveRemoteAuthority:ssh-remote'
[2021-10-09 17:31:01.228] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/ms-vscode-remote.remote-ssh-0.65.8/out/extension
[2021-10-09 17:31:06.834] [exthost] [info] ExtensionService#_doActivateExtension vscode.microsoft-authentication, startup: false, activationEvent: 'onAuthenticationRequest:microsoft'
[2021-10-09 17:31:06.834] [exthost] [info] ExtensionService#loadCommonJSModule file:///Applications/Visual Studio Code.app/Contents/Resources/app/extensions/microsoft-authentication/dist/extension.js
[2021-10-09 17:31:06.859] [exthost] [info] ExtensionService#_doActivateExtension stkb.rewrap, startup: true, activationEvent: '*'
[2021-10-09 17:31:06.859] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/stkb.rewrap-1.14.0/vscode/compiled/Extension
[2021-10-09 17:31:06.955] [exthost] [info] ExtensionService#_doActivateExtension vscodevim.vim, startup: true, activationEvent: '*'
[2021-10-09 17:31:06.955] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/vscodevim.vim-1.21.8/out/extension
[2021-10-09 17:31:07.037] [exthost] [info] ExtensionService#_doActivateExtension wayou.vscode-todo-highlight, startup: true, activationEvent: '*'
[2021-10-09 17:31:07.037] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/wayou.vscode-todo-highlight-1.0.4/src/extension
[2021-10-09 17:31:07.041] [exthost] [info] ExtensionService#_doActivateExtension zhuangtongfa.material-theme, startup: true, activationEvent: '*'
[2021-10-09 17:31:07.041] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/zhuangtongfa.material-theme-3.13.2/out/extension.js
[2021-10-09 17:31:10.786] [exthost] [info] eager extensions activated
[2021-10-09 17:31:10.788] [exthost] [info] ExtensionService#_doActivateExtension alefragnani.Bookmarks, startup: false, activationEvent: 'onStartupFinished'
[2021-10-09 17:31:10.809] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/alefragnani.bookmarks-13.2.2/dist/extension
[2021-10-09 17:31:10.814] [exthost] [info] ExtensionService#_doActivateExtension codespaces-contrib.codeswing, startup: false, activationEvent: 'onStartupFinished'
[2021-10-09 17:31:10.814] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/codespaces-contrib.codeswing-0.0.21/dist/extension.js
[2021-10-09 17:31:10.886] [exthost] [info] ExtensionService#_doActivateExtension ms-vscode-remote.remote-containers, startup: false, activationEvent: 'onStartupFinished'
[2021-10-09 17:31:10.886] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/ms-vscode-remote.remote-containers-0.202.1/dist/extension/extension
[2021-10-09 17:31:11.004] [exthost] [info] ExtensionService#_doActivateExtension vscode.github-authentication, startup: false, activationEvent: 'onAuthenticationRequest:github'
[2021-10-09 17:31:11.005] [exthost] [info] ExtensionService#loadCommonJSModule file:///Applications/Visual Studio Code.app/Contents/Resources/app/extensions/github-authentication/dist/extension.js
[2021-10-09 17:42:37.580] [exthost] [info] extension host terminating: renderer closed the socket
[2021-10-09 17:42:38.590] [exthost] [info] exiting with code 0
[2021-10-09 17:42:41.242] [exthost] [info] extension host started
[2021-10-09 17:42:41.243] [exthost] [info] Skipping acquiring lock for /Users/XXXXXXXXXX/Library/Application Support/Code/User/workspaceStorage/f2d8915ac123aec2f00d15f70caa915e.
[2021-10-09 17:42:41.718] [exthost] [info] ExtensionService#_doActivateExtension ms-vscode-remote.remote-ssh, startup: false, activationEvent: 'onResolveRemoteAuthority:ssh-remote'
[2021-10-09 17:42:41.719] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/ms-vscode-remote.remote-ssh-0.65.8/out/extension
[2021-10-09 17:42:47.727] [exthost] [info] ExtensionService#_doActivateExtension vscode.microsoft-authentication, startup: false, activationEvent: 'onAuthenticationRequest:microsoft'
[2021-10-09 17:42:47.727] [exthost] [info] ExtensionService#loadCommonJSModule file:///Applications/Visual Studio Code.app/Contents/Resources/app/extensions/microsoft-authentication/dist/extension.js
[2021-10-09 17:42:47.756] [exthost] [info] ExtensionService#_doActivateExtension stkb.rewrap, startup: true, activationEvent: '*'
[2021-10-09 17:42:47.756] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/stkb.rewrap-1.14.0/vscode/compiled/Extension
[2021-10-09 17:42:47.879] [exthost] [info] ExtensionService#_doActivateExtension vscodevim.vim, startup: true, activationEvent: '*'
[2021-10-09 17:42:47.880] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/vscodevim.vim-1.21.8/out/extension
[2021-10-09 17:42:47.969] [exthost] [info] ExtensionService#_doActivateExtension wayou.vscode-todo-highlight, startup: true, activationEvent: '*'
[2021-10-09 17:42:47.969] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/wayou.vscode-todo-highlight-1.0.4/src/extension
[2021-10-09 17:42:47.971] [exthost] [info] ExtensionService#_doActivateExtension zhuangtongfa.material-theme, startup: true, activationEvent: '*'
[2021-10-09 17:42:47.971] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/zhuangtongfa.material-theme-3.13.2/out/extension.js
[2021-10-09 17:42:48.146] [exthost] [info] eager extensions activated
[2021-10-09 17:42:48.157] [exthost] [info] ExtensionService#_doActivateExtension alefragnani.Bookmarks, startup: false, activationEvent: 'onStartupFinished'
[2021-10-09 17:42:48.160] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/alefragnani.bookmarks-13.2.2/dist/extension
[2021-10-09 17:42:48.168] [exthost] [info] ExtensionService#_doActivateExtension codespaces-contrib.codeswing, startup: false, activationEvent: 'onStartupFinished'
[2021-10-09 17:42:48.168] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/codespaces-contrib.codeswing-0.0.21/dist/extension.js
[2021-10-09 17:42:48.252] [exthost] [info] ExtensionService#_doActivateExtension ms-vscode-remote.remote-containers, startup: false, activationEvent: 'onStartupFinished'
[2021-10-09 17:42:48.253] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/XXXXXXXXXX/.vscode/extensions/ms-vscode-remote.remote-containers-0.202.1/dist/extension/extension
[2021-10-09 17:42:48.685] [exthost] [info] ExtensionService#_doActivateExtension vscode.github-authentication, startup: false, activationEvent: 'onAuthenticationRequest:github'
[2021-10-09 17:42:48.685] [exthost] [info] ExtensionService#loadCommonJSModule file:///Applications/Visual Studio Code.app/Contents/Resources/app/extensions/github-authentication/dist/extension.js

Remote Server Logs

[2021-10-08 15:04:15.668] [remoteagent] [info] 

*
* Visual Studio Code Server
*
* Reminder: You may only use this software with Visual Studio family products,
* as described in the license https://aka.ms/vscode-remote/license
*


[2021-10-08 15:04:15.668] [remoteagent] [info] Extension host agent started.
[2021-10-08 15:04:15.870] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] New connection established.
[2021-10-08 15:04:15.873] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] New connection established.
[2021-10-08 15:04:15.905] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] <9504> Launched Extension Host Process.
[2021-10-08 15:04:16.842] [remoteagent] [info] Deleted from disk eamodio.gitlens /root/.vscode-server/extensions/eamodio.gitlens-11.6.0
[2021-10-08 15:04:17.319] [remoteagent] [info] Deleted from disk gitlab.gitlab-workflow /root/.vscode-server/extensions/gitlab.gitlab-workflow-3.31.0
[2021-10-08 15:04:17.321] [remoteagent] [info] Deleted from disk gitlab.gitlab-workflow /root/.vscode-server/extensions/gitlab.gitlab-workflow-3.32.0
[2021-10-08 15:11:08.209] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 15:11:08.229] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 15:13:16.220] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 15:13:20.001] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 15:13:20.002] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 15:13:20.058] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 16:07:54.667] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 16:07:55.231] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 16:07:58.012] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 16:23:40.318] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 16:23:48.408] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 16:23:48.408] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 16:23:48.425] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 16:40:06.292] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 16:41:10.746] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 16:41:10.747] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 16:41:10.775] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 16:50:36.923] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 16:50:37.314] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 16:50:37.315] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 16:51:07.787] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 17:06:52.904] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 17:18:52.791] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 17:18:52.792] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 17:19:22.429] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 17:35:09.603] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 17:36:49.030] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 17:36:49.031] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 17:36:49.056] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 17:52:48.077] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 17:52:48.104] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 18:09:11.615] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 18:14:47.390] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 18:14:47.391] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 18:14:47.411] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 18:31:02.878] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 18:33:27.920] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 18:33:27.920] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 18:33:57.387] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 18:49:23.491] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 18:49:23.507] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 19:05:44.834] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 19:06:12.828] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 19:06:12.828] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 19:06:12.856] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 19:22:30.797] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 19:32:13.375] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 19:32:13.376] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 19:32:43.724] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 19:48:37.146] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 19:52:20.349] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 19:52:20.349] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 19:52:20.617] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 20:08:38.256] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 20:10:58.610] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 20:10:58.611] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 20:10:58.630] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 20:27:14.372] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 20:33:34.373] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 20:33:34.374] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 20:34:10.460] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 20:49:55.713] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 20:51:22.644] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 20:51:22.644] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 20:51:22.685] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 21:07:41.765] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 21:09:32.870] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 21:09:32.871] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 21:10:03.888] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 21:25:52.818] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 21:28:04.731] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 21:28:04.731] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 21:28:04.812] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 21:44:28.870] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 21:46:00.678] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 21:46:00.678] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 21:46:00.694] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 22:02:19.903] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 22:10:11.191] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 22:10:11.191] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 22:10:41.500] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 22:26:26.334] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 22:28:32.312] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 22:28:32.313] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 22:28:32.340] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 22:44:29.947] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 22:44:29.962] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 23:00:48.325] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 23:04:31.879] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 23:04:31.879] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 23:05:01.964] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 23:20:49.475] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 23:22:46.080] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 23:22:46.080] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 23:23:17.420] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 23:39:05.533] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-08 23:39:40.713] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-08 23:39:40.713] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-08 23:39:40.735] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-08 23:56:01.495] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 00:01:34.984] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 00:01:34.985] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 00:01:35.000] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 00:17:52.792] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 00:25:07.412] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 00:25:07.412] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 00:25:07.427] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 00:41:24.181] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 00:42:58.940] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 00:42:58.940] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 00:42:58.954] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 00:59:15.190] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 01:00:52.441] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 01:00:52.442] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 01:01:22.798] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 01:17:11.220] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 01:19:38.119] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 01:19:38.119] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 01:20:08.424] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 01:35:22.301] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 01:35:24.431] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 01:35:24.431] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 01:35:55.901] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 01:51:43.264] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 01:53:39.744] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 01:53:39.745] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 01:54:16.853] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 02:09:59.325] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 02:21:05.575] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 02:21:05.575] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 02:21:05.591] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 02:37:20.920] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 02:38:03.875] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 02:38:03.875] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 02:38:03.889] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 02:54:16.938] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 02:55:01.429] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 02:55:01.429] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 02:55:01.456] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 03:11:17.963] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 03:13:14.844] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 03:13:14.844] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 03:13:14.858] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 03:29:34.001] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 03:29:51.428] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 03:29:51.429] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 03:29:51.455] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 03:45:54.933] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 03:45:56.115] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 03:45:56.115] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 03:45:56.130] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 04:02:10.917] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 04:02:21.019] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 04:02:21.019] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 04:02:21.034] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 04:18:36.894] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 04:20:33.880] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 04:20:33.880] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 04:20:33.906] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 04:36:52.958] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 04:47:06.462] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 04:47:06.462] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 04:47:37.288] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 05:03:24.513] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 05:05:09.156] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 05:05:09.156] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 05:05:39.642] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 05:21:25.589] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 05:23:49.402] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 05:23:49.402] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 05:24:20.421] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 05:40:06.676] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 05:41:42.259] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 05:41:42.259] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 05:41:42.278] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 05:57:36.786] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 05:57:36.801] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 06:13:27.149] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 06:13:27.164] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 06:29:44.561] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 06:40:50.149] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 06:40:50.150] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 06:41:26.026] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 06:57:11.162] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 06:59:30.119] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 06:59:30.119] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 06:59:30.134] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 07:15:47.275] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 07:16:23.643] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 07:16:23.644] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 07:16:23.697] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 07:32:43.300] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 07:33:52.742] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 07:33:52.743] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 07:33:52.770] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 07:50:14.341] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 07:50:46.775] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 07:50:46.775] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 07:50:46.795] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 08:07:05.289] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 08:07:37.187] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 08:07:37.187] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 08:07:37.201] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 08:23:56.285] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 08:25:23.514] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 08:25:23.514] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 08:25:55.086] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 08:41:42.318] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 08:50:50.208] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 08:50:50.209] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 08:51:27.350] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 09:07:13.823] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 09:09:06.057] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 09:09:06.058] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 09:09:06.084] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 09:25:29.877] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 09:27:54.714] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 09:27:54.714] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 09:27:54.728] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 09:44:10.932] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 09:46:34.008] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 09:46:34.009] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 09:46:34.036] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 10:02:57.033] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 10:05:24.814] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 10:05:24.814] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 10:05:24.828] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 10:21:43.151] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 10:23:11.272] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 10:23:11.272] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 10:23:41.975] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 10:39:29.159] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 10:41:26.817] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 10:41:26.818] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 10:42:03.148] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 10:57:50.215] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 11:04:11.357] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 11:04:11.357] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 11:04:11.377] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 11:20:14.518] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 11:20:51.503] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 11:36:32.431] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 11:38:37.278] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 11:38:37.278] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 11:38:37.293] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 11:54:48.534] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 11:55:08.763] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 11:55:08.763] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 11:55:08.817] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 12:11:22.284] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 12:11:52.344] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 12:27:40.394] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 12:35:29.722] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 12:35:29.722] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 12:35:29.736] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 12:51:46.771] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 12:52:52.741] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 12:52:52.742] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 12:52:52.758] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 13:09:12.795] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 13:10:25.618] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 13:10:25.618] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 13:10:55.917] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 13:26:43.819] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 13:36:49.938] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 13:36:49.938] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 13:36:49.954] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 13:53:05.343] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 13:53:24.389] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 13:53:24.390] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 13:53:55.175] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 14:09:36.334] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 14:10:24.294] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 14:10:24.294] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 14:11:01.399] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 14:26:42.382] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 14:26:47.399] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 14:26:47.399] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 14:26:47.412] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 14:42:58.347] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 14:49:41.949] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 14:49:41.950] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 14:49:41.969] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 15:05:59.704] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 15:07:35.353] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 15:07:35.353] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 15:08:04.790] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 15:23:50.742] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 15:24:41.808] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 15:24:41.809] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 15:25:12.209] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 15:40:56.740] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 15:42:03.300] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 15:42:03.301] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 15:42:03.316] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 15:58:22.737] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 16:08:45.931] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 16:08:45.931] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 16:08:45.946] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 16:25:04.326] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 16:26:38.087] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 16:26:38.087] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 16:27:08.972] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 16:42:55.337] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 16:44:20.519] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 16:44:20.520] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 16:44:20.533] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 17:00:14.658] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 17:00:14.685] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 17:16:32.299] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 17:16:32.766] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 17:16:32.766] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 17:16:32.781] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 17:22:12.759] [remoteagent] [info] [127.0.0.1][193eb685][ManagementConnection] New connection established.
[2021-10-09 17:22:12.787] [remoteagent] [info] [127.0.0.1][b1b51d37][ExtensionHostConnection] New connection established.
[2021-10-09 17:22:12.976] [remoteagent] [info] [127.0.0.1][b1b51d37][ExtensionHostConnection] <3618> Launched Extension Host Process.
[2021-10-09 17:28:49.259] [remoteagent] [info] [127.0.0.1][193eb685][ManagementConnection] The client has disconnected gracefully, so the connection will be disposed.
[2021-10-09 17:28:50.361] [remoteagent] [info] [127.0.0.1][b1b51d37][ExtensionHostConnection] <3618> Extension Host Process exited with code: 0, signal: null.
[2021-10-09 17:28:54.114] [remoteagent] [info] [127.0.0.1][c3171a5a][ManagementConnection] New connection established.
[2021-10-09 17:28:54.218] [remoteagent] [info] [127.0.0.1][2edeb1fa][ExtensionHostConnection] New connection established.
[2021-10-09 17:28:54.225] [remoteagent] [info] [127.0.0.1][2edeb1fa][ExtensionHostConnection] <5785> Launched Extension Host Process.
[2021-10-09 17:28:54.273] [remoteagent] [error] [File Watcher (node.js)] Error: ENOTDIR: not a directory, stat '/dev/null/.vscode'
[2021-10-09 17:28:54.273] [remoteagent] [error] [File Watcher (node.js)] Error: ENOTDIR: not a directory, stat '/dev/null/.vscode/settings.json'
[2021-10-09 17:28:54.274] [remoteagent] [error] [File Watcher (node.js)] Error: ENOTDIR: not a directory, stat '/dev/null/.vscode/tasks.json'
[2021-10-09 17:28:54.274] [remoteagent] [error] [File Watcher (node.js)] Error: ENOTDIR: not a directory, stat '/dev/null/.vscode/launch.json'
[2021-10-09 17:28:58.567] [remoteagent] [info] [127.0.0.1][c3171a5a][ManagementConnection] The client has disconnected gracefully, so the connection will be disposed.
[2021-10-09 17:29:09.768] [remoteagent] [info] [127.0.0.1][7f620141][ManagementConnection] New connection established.
[2021-10-09 17:29:09.884] [remoteagent] [info] [127.0.0.1][686c3b13][ExtensionHostConnection] New connection established.
[2021-10-09 17:29:09.892] [remoteagent] [info] [127.0.0.1][686c3b13][ExtensionHostConnection] <5914> Launched Extension Host Process.
[2021-10-09 17:29:58.371] [remoteagent] [info] [127.0.0.1][7f620141][ManagementConnection] The client has disconnected gracefully, so the connection will be disposed.
[2021-10-09 17:29:59.438] [remoteagent] [info] [127.0.0.1][686c3b13][ExtensionHostConnection] <5914> Extension Host Process exited with code: 0, signal: null.
[2021-10-09 17:30:03.612] [remoteagent] [info] [127.0.0.1][d74783ba][ManagementConnection] New connection established.
[2021-10-09 17:30:03.729] [remoteagent] [info] [127.0.0.1][3f827be8][ExtensionHostConnection] New connection established.
[2021-10-09 17:30:03.739] [remoteagent] [info] [127.0.0.1][3f827be8][ExtensionHostConnection] <6356> Launched Extension Host Process.
[2021-10-09 17:30:03.780] [remoteagent] [error] [File Watcher (node.js)] Error: ENOTDIR: not a directory, stat '/dev/null/.vscode'
[2021-10-09 17:30:03.780] [remoteagent] [error] [File Watcher (node.js)] Error: ENOTDIR: not a directory, stat '/dev/null/.vscode/settings.json'
[2021-10-09 17:30:03.780] [remoteagent] [error] [File Watcher (node.js)] Error: ENOTDIR: not a directory, stat '/dev/null/.vscode/tasks.json'
[2021-10-09 17:30:03.781] [remoteagent] [error] [File Watcher (node.js)] Error: ENOTDIR: not a directory, stat '/dev/null/.vscode/launch.json'
[2021-10-09 17:30:19.068] [remoteagent] [info] [127.0.0.1][d74783ba][ManagementConnection] The client has disconnected gracefully, so the connection will be disposed.
[2021-10-09 17:30:20.132] [remoteagent] [info] [127.0.0.1][3f827be8][ExtensionHostConnection] <6356> Extension Host Process exited with code: 0, signal: null.
[2021-10-09 17:30:33.049] [remoteagent] [info] [127.0.0.1][2bea0814][ManagementConnection] New connection established.
[2021-10-09 17:30:33.055] [remoteagent] [info] [127.0.0.1][d8754b08][ExtensionHostConnection] New connection established.
[2021-10-09 17:30:33.062] [remoteagent] [info] [127.0.0.1][d8754b08][ExtensionHostConnection] <6650> Launched Extension Host Process.
[2021-10-09 17:30:54.292] [remoteagent] [info] [127.0.0.1][2bea0814][ManagementConnection] The client has disconnected gracefully, so the connection will be disposed.
[2021-10-09 17:30:55.367] [remoteagent] [info] [127.0.0.1][d8754b08][ExtensionHostConnection] <6650> Extension Host Process exited with code: 0, signal: null.
[2021-10-09 17:31:03.269] [remoteagent] [info] [127.0.0.1][b689c5f0][ManagementConnection] New connection established.
[2021-10-09 17:31:03.379] [remoteagent] [info] [127.0.0.1][f4597642][ExtensionHostConnection] New connection established.
[2021-10-09 17:31:03.389] [remoteagent] [info] [127.0.0.1][f4597642][ExtensionHostConnection] <7066> Launched Extension Host Process.
[2021-10-09 17:32:47.728] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected, will wait for reconnection 3h before disposing...
[2021-10-09 17:33:59.115] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] Another client has connected, will shorten the wait for reconnection 5m before disposing...
[2021-10-09 17:33:59.116] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] The client has reconnected.
[2021-10-09 17:33:59.142] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has reconnected.
[2021-10-09 17:33:59.298] [remoteagent] [info] [127.0.0.1][22aba1a4][ManagementConnection] The client has disconnected gracefully, so the connection will be disposed.
[2021-10-09 17:34:00.433] [remoteagent] [info] [127.0.0.1][7aa43d79][ExtensionHostConnection] <9504> Extension Host Process exited with code: 0, signal: null.
[2021-10-09 17:34:10.841] [remoteagent] [info] [127.0.0.1][2edeb1fa][ExtensionHostConnection] <5785> Extension Host Process exited with code: 0, signal: null.
[2021-10-09 17:42:37.606] [remoteagent] [info] [127.0.0.1][b689c5f0][ManagementConnection] The client has disconnected gracefully, so the connection will be disposed.
[2021-10-09 17:42:38.685] [remoteagent] [info] [127.0.0.1][f4597642][ExtensionHostConnection] <7066> Extension Host Process exited with code: 0, signal: null.
[2021-10-09 17:42:38.686] [remoteagent] [info] Last EH closed, waiting before shutting down
[2021-10-09 17:42:42.181] [remoteagent] [info] [127.0.0.1][a222f4ce][ManagementConnection] New connection established.
[2021-10-09 17:42:42.297] [remoteagent] [info] [127.0.0.1][65061285][ExtensionHostConnection] New connection established.
[2021-10-09 17:42:42.305] [remoteagent] [info] [127.0.0.1][65061285][ExtensionHostConnection] <10189> Launched Extension Host Process.
[2021-10-09 17:42:42.337] [remoteagent] [error] [File Watcher (node.js)] Error: ENOTDIR: not a directory, stat '/dev/null/.vscode'
[2021-10-09 17:42:42.337] [remoteagent] [error] [File Watcher (node.js)] Error: ENOTDIR: not a directory, stat '/dev/null/.vscode/settings.json'
[2021-10-09 17:42:42.337] [remoteagent] [error] [File Watcher (node.js)] Error: ENOTDIR: not a directory, stat '/dev/null/.vscode/tasks.json'
[2021-10-09 17:42:42.338] [remoteagent] [error] [File Watcher (node.js)] Error: ENOTDIR: not a directory, stat '/dev/null/.vscode/launch.json'

Settings Sync

[2021-10-09 17:22:08.568] [settingssync] [info] Using settings sync service https://vscode-sync.trafficmanager.net/
[2021-10-09 17:22:08.568] [settingssync] [info] Auto Sync is disabled.

Main

[2021-10-09 17:22:00.954] [main] [info] update#setState idle
[2021-10-09 17:22:30.956] [main] [info] update#setState checking for updates
[2021-10-09 17:22:34.349] [main] [info] update#setState idle

Window

[2021-10-09 17:30:59.986] [renderer6] [info] Starting extension host with pid 61886.
[2021-10-09 17:31:00.924] [renderer6] [error] [Extension Host] (node:61886) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
(Use `Code Helper (Renderer) --trace-deprecation ...` to show where the warning was created)
[2021-10-09 17:42:40.364] [renderer6] [info] Starting extension host with pid 62005.
[2021-10-09 17:42:41.098] [renderer6] [error] [Extension Host] (node:62005) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
(Use `Code Helper (Renderer) --trace-deprecation ...` to show where the warning was created)

Shared

[2021-10-09 17:22:12.551] [sharedprocess] [info] Deleted from disk eamodio.gitlens /Users/XXXXXXXXXX/.vscode/extensions/eamodio.gitlens-11.6.0
[2021-10-09 17:22:12.552] [sharedprocess] [info] Deleted from disk alefragnani.bookmarks /Users/XXXXXXXXXX/.vscode/extensions/alefragnani.bookmarks-13.2.1
[2021-10-09 17:22:12.705] [sharedprocess] [info] Deleted from disk sonarsource.sonarlint-vscode /Users/XXXXXXXXXX/.vscode/extensions/sonarsource.sonarlint-vscode-2.3.0
[2021-10-09 17:22:12.705] [sharedprocess] [info] Deleted from disk zhuangtongfa.material-theme /Users/XXXXXXXXXX/.vscode/extensions/zhuangtongfa.material-theme-3.13.1
[2021-10-09 17:22:12.946] [sharedprocess] [info] Deleted from disk streetsidesoftware.code-spell-checker /Users/XXXXXXXXXX/.vscode/extensions/streetsidesoftware.code-spell-checker-2.0.8
[2021-10-09 17:22:13.014] [sharedprocess] [info] Deleted from disk dbaeumer.vscode-eslint /Users/XXXXXXXXXX/.vscode/extensions/dbaeumer.vscode-eslint-2.1.25
[2021-10-09 17:22:13.055] [sharedprocess] [info] Deleted from disk gitlab.gitlab-workflow /Users/XXXXXXXXXX/.vscode/extensions/gitlab.gitlab-workflow-3.31.0
[2021-10-09 17:22:13.173] [sharedprocess] [info] Deleted from disk ms-vsliveshare.vsliveshare /Users/XXXXXXXXXX/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.4836
[2021-10-09 17:22:13.174] [sharedprocess] [info] Deleted from disk wallabyjs.quokka-vscode /Users/XXXXXXXXXX/.vscode/extensions/wallabyjs.quokka-vscode-1.0.402
[2021-10-09 17:22:13.185] [sharedprocess] [info] Deleted from disk ms-python.vscode-pylance /Users/XXXXXXXXXX/.vscode/extensions/ms-python.vscode-pylance-2021.9.4
[2021-10-09 17:22:13.218] [sharedprocess] [info] Deleted from disk ms-python.python /Users/XXXXXXXXXX/.vscode/extensions/ms-python.python-2021.9.1246542782
[2021-10-09 17:22:17.739] [sharedprocess] [info] Installing extension: ms-vscode-remote.remote-containers
[2021-10-09 17:22:17.754] [sharedprocess] [info] Installing extension: ms-toolsai.jupyter
[2021-10-09 17:22:18.071] [sharedprocess] [info] [logs cleanup]: Starting to clean up old logs.
[2021-10-09 17:22:18.076] [sharedprocess] [info] [logs cleanup]: Removing log folders '20210930T084231, 20210930T084233, 20210930T084532, 20210930T091328'
[2021-10-09 17:22:18.372] [sharedprocess] [info] Installing extension: ms-toolsai.jupyter-renderers
[2021-10-09 17:22:20.499] [sharedprocess] [info] Downloaded extension: ms-vscode-remote.remote-containers /Users/XXXXXXXXXX/Library/Application Support/Code/CachedExtensionVSIXs/ms-vscode-remote.remote-containers-0.202.1
[2021-10-09 17:22:23.870] [sharedprocess] [info] Extracted extension to /Users/XXXXXXXXXX/.vscode/extensions/.0aaf638f-5a8c-45c9-b446-ebbe83af6353: ms-vscode-remote.remote-containers
[2021-10-09 17:22:23.914] [sharedprocess] [info] Renamed to /Users/XXXXXXXXXX/.vscode/extensions/ms-vscode-remote.remote-containers-0.202.1
[2021-10-09 17:22:23.917] [sharedprocess] [info] Extracting completed. ms-vscode-remote.remote-containers
[2021-10-09 17:22:23.954] [sharedprocess] [info] Extension installed successfully: ms-vscode-remote.remote-containers
[2021-10-09 17:22:25.204] [sharedprocess] [info] Downloaded extension: ms-toolsai.jupyter-renderers /Users/XXXXXXXXXX/Library/Application Support/Code/CachedExtensionVSIXs/ms-toolsai.jupyter-renderers-1.0.3
[2021-10-09 17:22:26.074] [sharedprocess] [info] Extracted extension to /Users/XXXXXXXXXX/.vscode/extensions/.6b512315-b78e-458d-89b2-446d7484d099: ms-toolsai.jupyter-renderers
[2021-10-09 17:22:26.108] [sharedprocess] [info] Renamed to /Users/XXXXXXXXXX/.vscode/extensions/ms-toolsai.jupyter-renderers-1.0.3
[2021-10-09 17:22:26.111] [sharedprocess] [info] Extracting completed. ms-toolsai.jupyter-renderers
[2021-10-09 17:22:38.073] [sharedprocess] [info] [code cache cleanup]: Starting to clean up old code cache folders.
[2021-10-09 17:22:38.074] [sharedprocess] [info] [storage cleanup]: Starting to clean up storage folders.
[2021-10-09 17:22:38.077] [sharedprocess] [info] [code cache cleanup]: Removing code cache folder 507ce72a4466fbb27b715c3722558bb15afa9f48.
[2021-10-09 17:22:38.084] [sharedprocess] [info] [storage cleanup]: Deleting storage folder 1633817941229.
[2021-10-09 17:22:38.724] [sharedprocess] [info] Downloaded extension: ms-toolsai.jupyter /Users/XXXXXXXXXX/Library/Application Support/Code/CachedExtensionVSIXs/ms-toolsai.jupyter-2021.9.1001312534
[2021-10-09 17:22:39.192] [sharedprocess] [info] Extracted extension to /Users/XXXXXXXXXX/.vscode/extensions/.3c0a8f4d-1cea-4772-8a80-b8945823ad57: ms-toolsai.jupyter
[2021-10-09 17:22:39.237] [sharedprocess] [info] Renamed to /Users/XXXXXXXXXX/.vscode/extensions/ms-toolsai.jupyter-2021.9.1001312534
[2021-10-09 17:22:39.254] [sharedprocess] [info] Extracting completed. ms-toolsai.jupyter
[2021-10-09 17:22:39.259] [sharedprocess] [info] Extension installed successfully: ms-toolsai.jupyter-renderers
[2021-10-09 17:22:39.259] [sharedprocess] [info] Extension installed successfully: ms-toolsai.jupyter
[2021-10-09 17:22:48.083] [sharedprocess] [info] [language pack cache cleanup]: Starting to clean up unused language packs.

Extension Host

[2021-10-09 17:42:47.763] [exthost] [info] extension host started
[2021-10-09 17:42:48.456] [exthost] [info] ExtensionService#_doActivateExtension vscode.debug-auto-launch, startup: true, activationEvent: '*'
[2021-10-09 17:42:48.457] [exthost] [info] ExtensionService#loadCommonJSModule file:///root/.vscode-server/bin/ee8c7def80afc00dd6e593ef12f37756d8f504ea/extensions/debug-auto-launch/dist/extension
[2021-10-09 17:42:48.467] [exthost] [info] ExtensionService#_doActivateExtension vscode.git, startup: true, activationEvent: '*', root cause: GitLab.gitlab-workflow
[2021-10-09 17:42:48.467] [exthost] [info] ExtensionService#loadCommonJSModule file:///root/.vscode-server/bin/ee8c7def80afc00dd6e593ef12f37756d8f504ea/extensions/git/dist/main
[2021-10-09 17:42:48.571] [exthost] [info] ExtensionService#_doActivateExtension mhutchie.git-graph, startup: true, activationEvent: '*'
[2021-10-09 17:42:48.572] [exthost] [info] ExtensionService#loadCommonJSModule file:///root/.vscode-server/extensions/mhutchie.git-graph-1.30.0/out/extension.js
[2021-10-09 17:42:48.836] [exthost] [info] ExtensionService#_doActivateExtension vscode.github, startup: true, activationEvent: '*'
[2021-10-09 17:42:48.836] [exthost] [info] ExtensionService#loadCommonJSModule file:///root/.vscode-server/bin/ee8c7def80afc00dd6e593ef12f37756d8f504ea/extensions/github/dist/extension.js
[2021-10-09 17:42:48.848] [exthost] [info] ExtensionService#_doActivateExtension GitLab.gitlab-workflow, startup: true, activationEvent: '*'
[2021-10-09 17:42:48.848] [exthost] [info] ExtensionService#loadCommonJSModule file:///root/.vscode-server/extensions/gitlab.gitlab-workflow-3.33.0/out/src/extension
[2021-10-09 17:42:49.568] [exthost] [info] ExtensionService#_doActivateExtension vscode.emmet, startup: false, activationEvent: 'onStartupFinished'
[2021-10-09 17:42:49.568] [exthost] [info] ExtensionService#loadCommonJSModule file:///root/.vscode-server/bin/ee8c7def80afc00dd6e593ef12f37756d8f504ea/extensions/emmet/dist/node/emmetNodeMain
[2021-10-09 17:42:49.597] [exthost] [info] ExtensionService#_doActivateExtension vscode.merge-conflict, startup: false, activationEvent: 'onStartupFinished'
[2021-10-09 17:42:49.597] [exthost] [info] ExtensionService#loadCommonJSModule file:///root/.vscode-server/bin/ee8c7def80afc00dd6e593ef12f37756d8f504ea/extensions/merge-conflict/dist/mergeConflictMain
[2021-10-09 17:42:49.603] [exthost] [info] ExtensionService#_doActivateExtension eamodio.gitlens, startup: false, activationEvent: 'onStartupFinished'
[2021-10-09 17:42:49.603] [exthost] [info] ExtensionService#loadCommonJSModule file:///root/.vscode-server/extensions/eamodio.gitlens-11.6.1/dist/gitlens
[2021-10-09 17:42:49.825] [exthost] [info] eager extensions activated
[2021-10-09 17:42:49.912] [exthost] [info] ExtensionService#_doActivateExtension ms-vscode.js-debug, startup: false, activationEvent: 'onCommand:extension.js-debug.clearAutoAttachVariables'
[2021-10-09 17:42:49.912] [exthost] [info] ExtensionService#loadCommonJSModule file:///root/.vscode-server/bin/ee8c7def80afc00dd6e593ef12f37756d8f504ea/extensions/ms-vscode.js-debug/src/extension.js

Are there other logs I can provide?

@tanhakabir
Copy link
Contributor

Hm since you mentioned the original workspace is closed, are you still able to repro this bug? If so could you send logs as so: https://code.visualstudio.com/docs/remote/troubleshooting#_reporting-issues

You can get the Remote - SSH extension logs with Remote-SSH: Show Log from the Command Palette (F1). When reporting Remote - SSH issues, please also verify if you're able to SSH into your machine from an external terminal (not using Remote - SSH).

@dahjelle
Copy link
Author

Hm since you mentioned the original workspace is closed, are you still able to repro this bug?

Sorry for not being clear! That's actually part of the bug: while trying to open the diff, the original workspace gets closed and replaced with a new window that doesn't contain the workspace.

I recorded a video to try show what's going on — I have the git difftool --tool=code --cached ready to run in the terminal. Right after the video starts, I hit "Enter" in the terminal, and the workspace closes, and is replaced by a new window, which eventually shows the contents of the new file.

vs-code-1.mp4

Here's the Remote-SSH log:

[12:12:39.040] Log Level: 2
[12:12:39.046] remote-ssh@0.65.8
[12:12:39.052] darwin x64
[12:12:39.081] SSH Resolver called for "ssh-remote+XXXXXXXXXXXXXXXXXXXX.com", attempt 1
[12:12:39.082] "remote.SSH.useLocalServer": true
[12:12:39.082] "remote.SSH.path": undefined
[12:12:39.083] "remote.SSH.configFile": undefined
[12:12:39.083] "remote.SSH.useFlock": true
[12:12:39.083] "remote.SSH.lockfilesInTmp": false
[12:12:39.083] "remote.SSH.localServerDownload": auto
[12:12:39.083] "remote.SSH.remoteServerListenOnSocket": false
[12:12:39.083] "remote.SSH.showLoginTerminal": false
[12:12:39.083] "remote.SSH.defaultExtensions": []
[12:12:39.083] "remote.SSH.loglevel": 2
[12:12:39.085] SSH Resolver called for host: XXXXXXXXXXXXXXXXXXXX.com
[12:12:39.085] Setting up SSH remote "XXXXXXXXXXXXXXXXXXXX.com"
[12:12:39.090] Acquiring local install lock: /var/folders/d4/n6sqs_f57x586xm2ck315gkh0000gn/T/vscode-remote-ssh-3e4f2d41-install.lock
[12:12:39.105] Looking for existing server data file at /Users/XXXXXXXXXXX/Library/Application Support/Code/User/globalStorage/ms-vscode-remote.remote-ssh/vscode-ssh-host-3e4f2d41-ee8c7def80afc00dd6e593ef12f37756d8f504ea-0.65.8/data.json
[12:12:39.107] Found local server running: {"remoteListeningOn":{"port":38823},"osReleaseId":"centos","arch":"x86_64","webUiAccessToken":"","sshAuthSock":"","display":"","tmpDir":"/run/user/0","platform":"linux","connectionToken":"1111a1a1-1a1a-11aa-a111-a1a1111111a1","pid":85523,"ipcHandlePath":"/var/folders/d4/n6sqs_f57x586xm2ck315gkh0000gn/T/vscode-ssh-askpass-1b8831389f0498130504dafc0985b39ce5c42ae5.sock","socksPort":59322,"startupTime":1633972331893}
[12:12:39.148] Found running server - short-circuiting install
[12:12:39.152] Starting forwarding server. localPort 59358 -> socksPort 59322 -> remotePort 38823
[12:12:39.152] Forwarding server listening on 59358
[12:12:39.152] Waiting for ssh tunnel to be ready
[12:12:39.156] Tunneled 38823 to local port 59358
[12:12:39.156] Resolved "ssh-remote+XXXXXXXXXXXXXXXXXXXX.com" to "127.0.0.1:59358"
[12:12:39.159] [Forwarding server 59358] Got connection 0
[12:12:39.178] ------




[12:12:39.513] [Forwarding server 59358] Got connection 1
[12:12:39.685] [Forwarding server 59358] Got connection 2

@tanhakabir
Copy link
Contributor

@aeschli or @lszomoru do you guys have an idea of what could be happening here?

@github-actions
Copy link

This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines.

Happy Coding!

@dahjelle
Copy link
Author

dahjelle commented Oct 20, 2021

Can we please re-open this issue? :-) The issue still exists as of my comment 9 days ago. :-)

@dahjelle
Copy link
Author

Is there any other information I could provide that would help resolve (or at least re-open) this particular issue?

@aeschli aeschli reopened this Oct 22, 2021
@aeschli aeschli changed the title difftool on newly created files cancels the diff and completely closes the workspace [remote cli] difftool on newly created files cancels the diff and completely closes the workspace Oct 22, 2021
@aeschli aeschli transferred this issue from microsoft/vscode-remote-release Oct 22, 2021
@aeschli aeschli added remote Remote system operations issues bug Issue identified by VS Code Team member as probable bug labels Oct 22, 2021
@aeschli aeschli added this to the October 2021 milestone Oct 22, 2021
aeschli added a commit that referenced this issue Oct 22, 2021
@tanhakabir tanhakabir added the verified Verification succeeded label Oct 28, 2021
@github-actions github-actions bot locked and limited conversation to collaborators Dec 6, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug insiders-released Patch has been released in VS Code Insiders remote Remote system operations issues verified Verification succeeded
Projects
None yet
Development

No branches or pull requests

5 participants
@dahjelle @roblourens @aeschli @tanhakabir and others