Skip to content

Ensure coerce_numbers_to_str is always true on event ingest schemas

David Burke requested to merge fix-inconsistent-coerce_numbers_to_str into master

Reproduction of problem using sentry JS SDK

Sentry.addBreadcrumb({
  category: "foo",
  message: 1 as any,
  level: "error",
});

Message should be a string - but the sdk sends it as is.

Edited by David Burke

Merge request reports