Skip to content

Commit b9446de

Browse files
committed
add different ports, or it will conflict
1 parent b225838 commit b9446de

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dev-packages/node-integration-tests/suites/tracing/anthropic/scenario.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Anthropic from '@anthropic-ai/sdk';
22
import * as Sentry from '@sentry/node';
33
import express from 'express';
44

5-
const PORT = 3333;
5+
const PORT = 3335;
66

77
function startMockAnthropicServer() {
88
const app = express();

dev-packages/node-integration-tests/suites/tracing/google-genai/scenario-tools.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { GoogleGenAI } from '@google/genai';
22
import * as Sentry from '@sentry/node';
33
import express from 'express';
44

5-
const PORT = 3335; // Different port to avoid conflicts
5+
const PORT = 3337;
66

77
function startMockGoogleGenAIServer() {
88
const app = express();

dev-packages/node-integration-tests/suites/tracing/google-genai/scenario.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { GoogleGenAI } from '@google/genai';
22
import * as Sentry from '@sentry/node';
33
import express from 'express';
44

5-
const PORT = 3333;
5+
const PORT = 3336;
66

77
function startMockGoogleGenAIServer() {
88
const app = express();

0 commit comments

Comments
 (0)