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
I'm having a new issue locally:
The wrangler dev session for service "YYY" does not export an entrypoint named "XXX" - i'm on 3.86.0 and tried to rollback to 3.84.1, but issue persists.
Iit's properly exposed through the bindings and worked before.
It can no longer see it in the list at http://localhost:6284/workers
I narrowed down the issue, it appear the services aren't loaded when exported from another file.
β bug git:(main) β curl http://localhost:6284/workers |jq
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 277 100 277 0 0 147k 0 --:--:-- --:--:-- --:--:-- 270k
{
"bug-service-staging": {
"protocol": "http",
"mode": "local",
"port": 8792,
"host": "127.0.0.1",
"durableObjects": [],
"durableObjectsHost": "127.0.0.1",
"durableObjectsPort": 8792,
"entrypointAddresses": {
"Foo": {
"host": "127.0.0.1",
"port": 57840
},
"default": {
"host": "127.0.0.1",
"port": 57841
}
}
}
}
The text was updated successfully, but these errors were encountered:
The problem is fixed when I explicitly export the services, like: export {ServiceA} from './services' instead of export * from ./services
I'm not sure how and what broke it but it worked before.
I'm having a new issue locally:
The
wrangler dev
session for service "YYY" does not export an entrypoint named "XXX" - i'm on 3.86.0 and tried to rollback to 3.84.1, but issue persists.Iit's properly exposed through the bindings and worked before.
It can no longer see it in the list at http://localhost:6284/workers
I narrowed down the issue, it appear the services aren't loaded when exported from another file.
The text was updated successfully, but these errors were encountered: