evanderkoogh / otel-cf-workers

An OpenTelemetry compatible library for instrumenting and exporting traces for Cloudflare Workers
BSD 3-Clause "New" or "Revised" License
208 stars 39 forks source link

fix: make null not proxyable #147

Closed hansottowirtz closed 5 days ago

hansottowirtz commented 5 days ago

This crashes:

new Miniflare({
  ...,
  bindings: {
    SOMETHING: null
  }
});

because null crashes in isVersionMetadata. So I fixed it by checking for null in isProxyable.

jahands commented 5 days ago

Nice! Thanks!