fix: increase timeout for safeExec function

This commit is contained in:
Ivan K
2025-02-24 20:07:47 +03:00
parent 59e1d75870
commit 53475b5e8a

View File

@@ -11,7 +11,7 @@ const STATUS_COLORS = {
WARNING: '#ff9800'
};
async function safeExec(command, args = [], timeout = 5000) {
async function safeExec(command, args = [], timeout = 7000) {
try {
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), timeout);