-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Updates to use new Python locator Api #23832
Conversation
@@ -306,6 +345,8 @@ class NativeGlobalPythonFinderImpl extends DisposableBase implements NativePytho | |||
notifyUponCompletion(); | |||
}; | |||
|
|||
// Assumption is server will ensure there's only one refresh at a time. | |||
// Perhaps we should have a request Id or the like to map the results back to the `refresh` request. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will review the API tomorrow/later (after finishing other work), but leaving this as is for now
@karthiknadig /cc
// Lowercase for purposes of comparison (safe). | ||
executablesFoundByNativeLocator.add(data.executable.toLowerCase()); | ||
} else if (data.prefix) { | ||
if (isNativeInfoEnvironment(data)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@karthiknadig none of this code gets executed in the main branch anymore,
We can discuss that offline and fix that in a sepearate PR
But we'll need to get that done before the release
No description provided.