We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31fa34d commit eb7d152Copy full SHA for eb7d152
frontend/providers/template/src/services/backend/template-repo.ts
@@ -85,8 +85,8 @@ export async function updateRepo() {
85
86
console.log('git operation:', result);
87
} catch (error) {
88
- console.log('git operation timed out: \n', error);
89
- throw new Error('Git operation failed: ');
+ // Note: git operation timeout should not block the process. Just log the error, do not throw.
+ console.log('git operation timed out (non-blocking): \n', error);
90
}
91
92
if (!fs.existsSync(targetPath)) {
0 commit comments