You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: misleading error message about missing config when opening new file
This commit fixes a false alarm that says a config file cannot be found
when the language server tries to open a file for the first time.
We actually make two calls to `openClientFile()`.
1. In the first call, if the project doesn't already exist, the method
will create a project but it will not return the config filename.
2. In the second call, since the project has already been created,
the call to `openClientFile()` should succeed and we should receive a
config filename. If we don't receive one then it is an error, and we
should log message here instead of logging it in step (1).
0 commit comments