Hey does anybody here have experience stackblitz or some sort of "browser ide" to allow customers to
Hey does anybody here have experience stackblitz or some sort of "browser ide" to allow customers to create worker code?
Workers for Platforms Scripts (I have this section in our bill).AAAA 100::, origin seems fine, hostname added, validation completed – but when I access the customer domain (that should be now pointing to my fallback origin (worker)), I always get a cf page with 522. wrangler@dispatch-namespaces-dev release seems to be 4 months oldcanceled ? Also reported here but with no answers https://community.cloudflare.com/t/outcome-canceled-with-status-of-200-is-this-dangerous/653874 (context - I am calling an RPC worker from a user worker).
env.DATA_SERVICE appears to be an empty object with no methods.DataServiceEntryPoint is defined in the edge worker like this:

Hacker News
•10/26/21, 5:41 PM
curl https://api.cloudflare.com/client/v4/accounts/950816f3f59b079880a1ae33fb0ec320/workers/dispatch/namespaces/dev-functions/scripts/labs-functions/bindings
{
"result": [
{
"entrypoint": "DataServiceEntryPoint",
"environment": "production",
"name": "DATA_SERVICE",
"service": "edge",
"type": "service"
}
],
"success": true,
"errors": [],
"messages": []
}curl https://api.cloudflare.com/client/v4/accounts/950816f3f59b079880a1ae33fb0ec320/workers/dispatch/namespaces/dev-functions/scripts/did:key:0414f6bbcdddaddb8171834d44869293859d24dadefa332fb641d87c64a1846d05762874eabff2b59f354cbfe0bea9ed1603c413f27bd7c916ae833f31c7346f29-7c8813a8-8744-4040-9889-f7a9a1284397-e3e1ed4e-0326-46a5-85da-24d5829cbc6f/bindings
{
"result": [
{
"name": "AI",
"project": "\u003ccatalog\u003e",
"type": "ai"
},
{
"entrypoint": "DataServiceEntryPoint",
"environment": "production",
"name": "DATA_SERVICE",
"service": "edge",
"type": "service"
}
],
"success": true,
"errors": [],
"messages": []env.DATA_SERVICEDataServiceEntryPointedgeexport class DataServiceEntryPoint extends WorkerEntrypoint<Env> implements DataService {
async getSpaceRoot(spaceId: SpaceId): Promise<DocumentEntry | undefined> {
...
}
async query(filter: Filter): Promise<QueryResult> {
...
}