diff --git a/src/transport/ws-client.ts b/src/transport/ws-client.ts index d1cab86..ae8c11c 100644 --- a/src/transport/ws-client.ts +++ b/src/transport/ws-client.ts @@ -215,11 +215,9 @@ export class WsClientTransport implements TaskTracker { this.reconnectDelay = 1000; this.startHeartbeat(); - // Subscribe to all projects - for (const project of this.projects) { - this.log.info('→ Subscribing to project: %s (%s)', project.slug, project.id); - this.send('project.subscribe', { project_id: project.id }); - } + // Projects are auto-subscribed by Tracker on auth + this.log.info('Auto-subscribed to %d projects: %s', this.projects.length, + this.projects.map(p => p.slug).join(', ') || '(none)'); if (this.resolveStart) { this.resolveStart();