chore: increase timeout

This commit is contained in:
FalsePattern 2024-08-06 18:10:02 +02:00
parent b2038dfeb8
commit a4facf532e
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23
2 changed files with 7 additions and 1 deletions

View file

@ -23,6 +23,12 @@ Changelog structure reference:
- Zig Build integrated into an IDE tool window. Currently only supports running single steps, for more complex steps, - Zig Build integrated into an IDE tool window. Currently only supports running single steps, for more complex steps,
create a custom build configuration as before. create a custom build configuration as before.
### Changed
- Project
- Increased internal zig tool timeout to 10 seconds. Note that tasks don't have timeout, this is only used for
ZigBrains getting metadata about the compiler and the buildscript.
## [16.1.3] ## [16.1.3]
### Changed ### Changed

View file

@ -29,7 +29,7 @@ public class LocalZigToolchain extends AbstractZigToolchain{
@Override @Override
public int executionTimeoutInMilliseconds() { public int executionTimeoutInMilliseconds() {
return 1000; return 10000;
} }
@Override @Override