Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/api/stores/[storeId]/themes/confirm/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ async function storeLargeFileInChunks(
// Almacenar con timeout
const storagePromise = s3Storage.storeTheme(processedTheme, storeId, processedFile);
const timeoutPromise = new Promise((_, reject) => {
setTimeout(() => reject(new Error('S3 storage timeout')), 25000); // 25 segundos timeout
setTimeout(() => reject(new Error('S3 storage timeout')), 120000); // 120 segundos timeout
});

try {
Expand Down