Merge pull request #12149 from artem-barysh-dev/increase-timeout

Increased TBEL script compilation timeout
This commit is contained in:
Viacheslav Klimov 2024-11-29 15:15:37 +02:00 committed by GitHub
commit 4785b3f6a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -251,4 +251,8 @@ public class DefaultTbelInvokeService extends AbstractScriptInvokeService implem
return hasher.hash().toString();
}
@Override
protected long getMaxEvalRequestsTimeout() {
return maxInvokeRequestsTimeout * 2;
}
}