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

avoid sending proxies from dotnet interactive #2837

Merged
merged 2 commits into from
Mar 15, 2023

Conversation

colombod
Copy link
Member

@colombod colombod commented Mar 14, 2023

vscode extension gets confused when it sees the vscode and jsproxy to a kernelhost hat is not existing yes and creates double proxies to js

@colombod colombod closed this Mar 15, 2023
auto-merge was automatically disabled March 15, 2023 00:03

Pull request was closed

@colombod colombod reopened this Mar 15, 2023
@@ -129,7 +129,10 @@ public async Task ConnectAsync()

_kernel.VisitSubkernelsAndSelf(k =>
{
kernelInfos.Add(k.KernelInfo);
if (k.KernelInfo.IsProxy == false)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (k.KernelInfo.IsProxy == false)
if (!k.KernelInfo.IsProxy)

@colombod colombod enabled auto-merge (rebase) March 15, 2023 00:56
@colombod colombod merged commit 15d6a07 into dotnet:main Mar 15, 2023
@colombod colombod deleted the issue_with_proxies branch March 15, 2023 01:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants