Skip to content

Commit 5d0a84a

Browse files
committed
fix: change port to not collide with inspector
1 parent aadd4a0 commit 5d0a84a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const STANDBY_MODE = Actor.getEnv().metaOrigin === 'STANDBY';
1919
await Actor.init();
2020

2121
const HOST = Actor.isAtHome() ? process.env.ACTOR_STANDBY_URL as string : 'http://localhost';
22-
const PORT = Actor.isAtHome() ? Number(process.env.ACTOR_STANDBY_PORT) : 3000;
22+
const PORT = Actor.isAtHome() ? Number(process.env.ACTOR_STANDBY_PORT) : 3001;
2323

2424
if (!process.env.APIFY_TOKEN) {
2525
log.error('APIFY_TOKEN is required but not set in the environment variables.');

0 commit comments

Comments
 (0)