Compare commits

...

2 Commits

Author SHA1 Message Date
4f62bb7aa7 changed timeout for DAIClient to 10 minutes 2026-06-14 16:48:34 +02:00
7f3870a95b changed pooling interval from 3s to 10s 2026-06-14 14:42:30 +02:00
2 changed files with 17 additions and 17 deletions

View File

@ -760,7 +760,7 @@ const App = {
} catch (error) {
console.error('Polling error:', error);
}
}, 3000);
}, 10000);
},
updateGenerationStatus(status) {

View File

@ -9,7 +9,7 @@ use Exception;
class DAIClient
{
private string $apiUrl;
private int $timeout = 120;
private int $timeout = 600;
public function __construct(?string $apiUrl = null)
{