Any updates on smart placement for tcp connections?
Any updates on smart placement for tcp connections?
The RPC receiver does not implement the method "sendTestEmail" error even though I have the 2 workers services running 


Failed to add watermark: ${response.status} ${response.statusText});watermarked-${Date.now()}.webp;${c.env.R2_PUBLIC_URL}/${key};setEnvironmentVariable and getEnvironmentVariable. The pages project calls getEnvironmentVariable, but when I track the time it takes to get a value (line before the RPC call and after (startMs, durationMs), it's more often 100-300ms than it is 0-30ms (it does hit it, but very rarely). Any reason why? I thought that service bindings would bind in the same isolate.return this.env[key], setEnvironmentVariable uses the Cloudflare API to set an environment variable on that worker.--persist-to in the dev command https://developers.cloudflare.com/workers/testing/local-development/#work-with-local-data, https://developers.cloudflare.com/workers/wrangler/commands/#dev to specify a specific folder to persist stuff too, while I think sqlite itself would be fine idk if the rest of it would if you're talking about running it at the same time/** Edge Config Worker */
export default class extends WorkerEntrypoint<EdgeConfigEnv> {
async setEnvironmentVariable(name: string, value: string): Promise<boolean> {
const res = await fetch(..., {}); // Simple POST call to `/workers/scripts/${scriptName}/secrets`
}
getEnvironmentVariable(name: string): string | null {
if (typeof this.env[name] === "string") {
return this.env[name];
}
return null;
}
}