diff --git a/backend/src/application/jobs/processar_ranking.py b/backend/src/application/jobs/processar_ranking.py index ca4d966..d02676b 100644 --- a/backend/src/application/jobs/processar_ranking.py +++ b/backend/src/application/jobs/processar_ranking.py @@ -22,7 +22,8 @@ class ProcessarRankingJob: self.oracle_remote_client = oracle_remote_client self.oracle_local_client = oracle_local_client self.ranking_repo = ranking_repo - self.consultor_repo = ConsultorRepositoryImpl(es_client, oracle_remote_client) + # Para acelerar a carga principal, não buscamos PPG aqui (Componente B vem depois) + self.consultor_repo = ConsultorRepositoryImpl(es_client, oracle_client=None) self.calculador = CalculadorPontuacao() async def executar(self, limpar_antes: bool = True) -> Dict[str, Any]: