1
0
Fork 0
mirror of synced 2024-06-30 04:00:34 +12:00

Update max_failed_attempts to 100

This commit is contained in:
Khushboo Verma 2024-01-25 11:44:16 +05:30
parent da638a10f7
commit 5f5a7801b0

View file

@ -16,7 +16,7 @@ use Utopia\Queue\Message;
class Webhooks extends Action
{
private array $errors = [];
private const MAX_FAILED_ATTEMPTS = 10;
private const MAX_FAILED_ATTEMPTS = 100;
private const MAX_FILE_SIZE = 5242880; // 5 MB
public static function getName(): string