Are Workflow bindings supported in Workers for Platforms?
Are Workflow bindings supported in Workers for Platforms?
tags using this deploy command?.fetch (like service bindings via HTTP)? I'm trying to build an abstraction where a worker would call another via service bindings mostly (RPC looks great here), but some power-users could write/upload their own (RPC isn't really mentioned anywhere here but was curious if anyone already tried)


DISPATCH_NAMESPACE binding. 0.0.0-2ca4eaef5 with tag dispatch-namespaces-dev as recommended in workers for platforms documentation.unstable_dev "outbound worker".unstable_dev "dispatch worker" that has DISPATCH_NAMESPACE binding with outbound = { service = "outbound-worker" } PUT request <ACCOUNT_ID>/workers/dispatch/namespaces/<NAMESPACE>/scripts/<SCRIPT_NAME> to my local nodejs sever that spawns child process with wrangler dev with user code passed in request body (I am doing it for local testing only, in production it will be pointed to https://api.cloudflare.com). const worker = DISPATCH_NAMESPACE.get(<SCRIPT_NAME>); worker.fetch(...) to dispatch user worker.[wrangler] Couldn\'t find 'wrangler dev' session for "0193d5cc-506a-77db-a12a-c81bd1d6b6dc-0-0-0" in namespace "dev-functions" to proxy to. And no request is being intercepted by my outbound worker.user workers is not being seen by dispatch worker, maybe I should not be using unstable_dev for starting dispatch worker. Would appreciate any help, thanks in advance.
We discourage creating a new namespace for each customer?DISPATCH_NAMESPACEDISPATCH_NAMESPACE0.0.0-2ca4eaef5dispatch-namespaces-devworkers for platformsunstable_devunstable_devunstable_devoutbound = { service = "outbound-worker" }const worker = DISPATCH_NAMESPACE.get(<SCRIPT_NAME>); worker.fetch(...)[wrangler] Couldn\'t find 'wrangler dev' session for "0193d5cc-506a-77db-a12a-c81bd1d6b6dc-0-0-0" in namespace "dev-functions" to proxy touser workersWe discourage creating a new namespace for each customername = "0193d5cc-506a-77db-a12a-c81bd1d6b6dc-0-0-0"
main = "./bootloader.js"
compatibility_date = "2024-04-05"
compatibility_flags = [ "nodejs_compat" ]
dispatch_namespace = "dev-functions"