You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.error(`Failed to generate embedding for commit ${commit.oid}`,{error: embedErrorinstanceofError ? embedError.message : String(embedError)});
596
-
continue;// Skip this commit if embedding fails
598
+
// This catch block will now primarily catch errors from llmProvider.generateEmbedding
599
+
logger.error(`Failed to process or generate embedding for commit ${commit.oid}`,{error: embedErrorinstanceofError ? embedError.message : String(embedError)});
600
+
continue;// Skip this commit if ID generation or embedding fails
0 commit comments