-
Notifications
You must be signed in to change notification settings - Fork 29.4k
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 extension fails to activate in web worker extension host #144513
Comments
…ces from the web worker extension host origin
Are there verification steps for this? |
@jeanp413 Could you please verify? |
@alexdima not working |
I have debugged this and the root cause is that these requests are not caught by the service worker installed on the main thread's origin. The only reasonable solution would be the one proposed in #144515 where we would go to the main thread to make the request, but we would need to do this only for embedders like Codespaces. |
For this release 1.65 work was done to make it possible to run an extension installed in the remote inside the web worker extension host #141322
This works when running from sources because the web worker runs of the same origin, but the extension fails to activate both in gitpod and codespaces as the web worker runs on a different origin
It fails when fetching the extension entry point here due to a CORS error in the case of codespaces
The text was updated successfully, but these errors were encountered: