(errorMsg: string)
| 594 | } |
| 595 | |
| 596 | private isRetryableProjectSyncError(errorMsg: string): boolean { |
| 597 | return PROJECT_SYNC_RETRYABLE_ERRORS.some((pattern) => errorMsg.includes(pattern)); |
| 598 | } |
| 599 | |
| 600 | private async probeBaseRepoHealth( |
| 601 | baseRepoPathArg: string, |