Skip to content

Commit 4ae3e66

Browse files
committed
Add complete sanitization
1 parent d6ff4c2 commit 4ae3e66

File tree

4 files changed

+380
-311
lines changed

4 files changed

+380
-311
lines changed

dev-packages/node-integration-tests/suites/tracing/postgresjs/scenario-requestHook.js

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
1-
const { loggingTransport } = require('@sentry-internal/node-integration-tests');
21
const Sentry = require('@sentry/node');
3-
4-
Sentry.init({
5-
dsn: 'https://public@dsn.ingest.sentry.io/1337',
6-
release: '1.0',
7-
tracesSampleRate: 1.0,
8-
transport: loggingTransport,
9-
});
2+
const postgres = require('postgres');
103

114
// Stop the process from exiting before the transaction is sent
125
setInterval(() => {}, 1000);
136

14-
const postgres = require('postgres');
15-
167
const sql = postgres({ port: 5444, user: 'test', password: 'test', database: 'test_db' });
178

189
async function run() {

0 commit comments

Comments
 (0)