nvh Posted January 9, 2023 Posted January 9, 2023 Server.exe automatically closes when I open it. [Error] Received unhandled exception from System.Threading.Thread. Â
1 panda Posted March 3, 2023 Posted March 3, 2023 On 2/28/2023 at 5:29 PM, Blestro said: Â Hi, This one @Blestro Can you try checking out specifically this commit (SHAÂ d416695aefe79d7de7b6d88e6dcdf02dbb8916e5) and seeing if you can run without the crash? I have a feeling that the commit immediately after it is the one that is causing this crash with no information, but I have never been able to reproduce it and you are the first person who seems to be able to reproduce it and be compiling the source (which will help debugging it).
0 Artheios Posted February 15, 2023 Posted February 15, 2023 Hello if you need help you need to provide some more informations ^^ Which is the latest version of intersect that works for you and which version have you downloaded ? Also if you're on windows or something else please note it.
0 Blestro Posted February 24, 2023 Posted February 24, 2023 Hi I have the same problem, when I try to open the server i am using a clean build of the Main branch of the repository without none modifications any idea to solve this issue ?
0 panda Posted February 24, 2023 Posted February 24, 2023 9 hours ago, Blestro said: Hi I have the same problem, when I try to open the server i am using a clean build of the Main branch of the repository without none modifications any idea to solve this issue ? What is the latest commit that you have?
0 Blestro Posted February 28, 2023 Posted February 28, 2023 On 2/24/2023 at 11:28 AM, panda said: What is the latest commit that you have? Â Hi, This one
0 Blestro Posted March 4, 2023 Posted March 4, 2023 On 3/3/2023 at 10:06 AM, panda said: @Blestro Can you try checking out specifically this commit (SHAÂ d416695aefe79d7de7b6d88e6dcdf02dbb8916e5) and seeing if you can run without the crash? I have a feeling that the commit immediately after it is the one that is causing this crash with no information, but I have never been able to reproduce it and you are the first person who seems to be able to reproduce it and be compiling the source (which will help debugging it). @panda I ran the server without problems with this commit
0 panda Posted March 4, 2023 Posted March 4, 2023 4 hours ago, Blestro said: @panda I ran the server without problems with this commit @Blestro If you have it and are interested in a little bit faster turnaround, we can debug this problem on the Discord server. In the mean time, can you try replacing internal static void ProcessUnhandledException(object sender, Exception exception) with the following and see if the crash will dump any information to the logs or the console? Â internal static void ProcessUnhandledException(object sender, Exception exception) { var currentException = exception; var innerException = false; do { Console.Error.WriteLine(currentException.Message); Console.Error.WriteLine(currentException.StackTrace); var message = innerException ? "Caused by:" : $"Received unhandled exception from {sender}."; Log.Error(currentException, message); currentException = currentException.InnerException; } while (currentException != null); } Â
Question
nvh
Server.exe automatically closes when I open it.
Â
9 answers to this question
Recommended Posts