From 176fa7ab1d8770bdac466881e904e1d99b84a20c Mon Sep 17 00:00:00 2001 From: Tony Wasserka Date: Fri, 3 Jan 2025 16:32:38 +0100 Subject: [PATCH] Lower FEXServer close timeout --- Source/Tools/FEXServer/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Tools/FEXServer/Main.cpp b/Source/Tools/FEXServer/Main.cpp index 36fc87279a..255debb2c8 100644 --- a/Source/Tools/FEXServer/Main.cpp +++ b/Source/Tools/FEXServer/Main.cpp @@ -200,7 +200,7 @@ int main(int argc, char** argv, char** const envp) { // This will let FEXInterpreter know we are ready PipeScanner::ClosePipes(); - ProcessPipe::SetConfiguration(Options.Foreground, Options.PersistentTimeout ?: 10); + ProcessPipe::SetConfiguration(Options.Foreground, Options.PersistentTimeout ?: 1); // Actually spin up the request thread. // Any applications that were waiting for the socket to accept will then go through here.