We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb6a88b commit b1b50ffCopy full SHA for b1b50ff
2 files changed
dev-packages/cloudflare-integration-tests/package.json
@@ -23,6 +23,7 @@
23
"@prisma/adapter-d1": "6.15.0",
24
"@prisma/client": "6.15.0",
25
"@sentry/cloudflare": "10.66.0",
26
+ "@sentry/core": "10.66.0",
27
"@sentry/hono": "10.66.0",
28
"hono": "^4.12.25",
29
"openai": "5.18.1"
dev-packages/cloudflare-integration-tests/suites/tracing/workers-ai/index.ts
@@ -1,11 +1,12 @@
1
import * as Sentry from '@sentry/cloudflare';
2
+import { instrumentWorkersAiClient } from '@sentry/core';
3
import { MockAi } from './mocks';
4
5
interface Env {
6
SENTRY_DSN: string;
7
}
8
-const ai = Sentry.instrumentWorkersAiClient(new MockAi());
9
+const ai = instrumentWorkersAiClient(new MockAi());
10
11
export default Sentry.withSentry(
12
(env: Env) => ({
0 commit comments