Skip to content

Commit

Permalink
Processing: increase the default value of processingTimeout
Browse files Browse the repository at this point in the history
  • Loading branch information
CarterLi committed Sep 18, 2024
1 parent 7568658 commit 6acc33c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/json_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@
"processingTimeout": {
"type": "integer",
"description": "Set the timeout (ms) when waiting for child processes, `-1` for no timeout",
"default": 1000
"default": 5000
},
"preRun": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion src/data/help.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
"desc": "Set the timeout (ms) when waiting for child processes",
"arg": {
"type": "num",
"default": 1000
"default": 5000
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/options/general.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ bool ffOptionsParseGeneralCommandLine(FFOptionsGeneral* options, const char* key

void ffOptionsInitGeneral(FFOptionsGeneral* options)
{
options->processingTimeout = 1000;
options->processingTimeout = 5000;
options->multithreading = true;
options->detectVersion = true;

Expand Down

0 comments on commit 6acc33c

Please sign in to comment.