fix(evolution): correct knowledge-service port from 3005 to 3003

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-25 08:24:57 -08:00
parent 84ffd0380e
commit ccb0648f6c
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ export class KnowledgeClient {
constructor(private configService: ConfigService) { constructor(private configService: ConfigService) {
this.baseUrl = this.configService.get<string>( this.baseUrl = this.configService.get<string>(
'KNOWLEDGE_SERVICE_URL', 'KNOWLEDGE_SERVICE_URL',
'http://knowledge-service:3005', 'http://knowledge-service:3003',
); );
} }