Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/node/test/manual/apm-transaction/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ app.get('/trace', async (_req, res, next) => {
app.use(Tracing.finish());
app.use(Sentry.Handlers.errorHandler());

const server = app.listen(3000, () => {
http.get('http://localhost:3000/trace', res => {
const server = app.listen(1231, () => {
http.get('http://localhost:1231/trace', res => {
server.close();
});
});
8 changes: 4 additions & 4 deletions packages/node/test/manual/express-scope-separation/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ app.get('/baz', req => {

app.use(Sentry.Handlers.errorHandler());

app.listen(3000);
app.listen(1121);

http.get('http://localhost:3000/foo');
http.get('http://localhost:3000/bar');
http.get('http://localhost:3000/baz');
http.get('http://localhost:1121/foo');
http.get('http://localhost:1121/bar');
http.get('http://localhost:1121/baz');
4 changes: 2 additions & 2 deletions packages/node/test/manual/memory-leak/express-patient.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ app.use((err, req, res, next) => {
return res.status(500).send('oh no there was an error: ' + err.message);
});

const server = app.listen(3000, () => {
process._rawDebug('patient is waiting to be poked on port 3000');
const server = app.listen(5140, () => {
process._rawDebug('patient is waiting to be poked on port 5140');
memwatch.gc();
});