RPC, `using`, Experimental Wrangler and Observability

When making RPC calls through a Service Binding, it's recommended (https://developers.cloudflare.com/workers/runtime-apis/rpc/lifecycle/#how-to-use-the-using-declaration-in-your-worker) that we employ the
using
keyword to enable automatic cleanup. To use this, we're forced to use the wrangler@using-keyword-experimental version so that the
using
keyword is transpiled properly upon deployment. Unfortunately, this version of wrangler seems to be incompatible with the new observability setting that's available to us in wrangler 3.78.6.

Is there another way to handle RPC call cleanup without using the
using
keyword so that we can not bump into incompatibility with new features that are released?
Was this page helpful?