Skip to content

Commit 6acc33c

Browse files
committed
Processing: increase the default value of processingTimeout
For 7568658
1 parent 7568658 commit 6acc33c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/json_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@
337337
"processingTimeout": {
338338
"type": "integer",
339339
"description": "Set the timeout (ms) when waiting for child processes, `-1` for no timeout",
340-
"default": 1000
340+
"default": 5000
341341
},
342342
"preRun": {
343343
"type": "string",

src/data/help.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
"desc": "Set the timeout (ms) when waiting for child processes",
129129
"arg": {
130130
"type": "num",
131-
"default": 1000
131+
"default": 5000
132132
}
133133
},
134134
{

src/options/general.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ bool ffOptionsParseGeneralCommandLine(FFOptionsGeneral* options, const char* key
111111

112112
void ffOptionsInitGeneral(FFOptionsGeneral* options)
113113
{
114-
options->processingTimeout = 1000;
114+
options->processingTimeout = 5000;
115115
options->multithreading = true;
116116
options->detectVersion = true;
117117

0 commit comments

Comments
 (0)