chore: increase timeout
This commit is contained in:
parent
b2038dfeb8
commit
a4facf532e
2 changed files with 7 additions and 1 deletions
|
@ -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,
|
||||
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]
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -29,7 +29,7 @@ public class LocalZigToolchain extends AbstractZigToolchain{
|
|||
|
||||
@Override
|
||||
public int executionTimeoutInMilliseconds() {
|
||||
return 1000;
|
||||
return 10000;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue