nvh Posted January 9, 2023 Share Posted January 9, 2023 Server.exe automatically closes when I open it. [Error] Received unhandled exception from System.Threading.Thread. Â Link to comment Share on other sites More sharing options...
0 panda Posted March 24, 2023 Share Posted March 24, 2023 This should be resolved in v0.7.1.117-beta   Link to comment Share on other sites More sharing options...
1 panda Posted March 3, 2023 Share 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). Link to comment Share on other sites More sharing options...
0 Artheios Posted February 15, 2023 Share 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. Link to comment Share on other sites More sharing options...
0 Blestro Posted February 24, 2023 Share 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 ? Link to comment Share on other sites More sharing options...
0 panda Posted February 24, 2023 Share 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? Link to comment Share on other sites More sharing options...
0 Blestro Posted February 28, 2023 Share 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 Link to comment Share on other sites More sharing options...
0 Blestro Posted March 4, 2023 Share 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 Link to comment Share on other sites More sharing options...
0 panda Posted March 4, 2023 Share 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); } Â Link to comment Share on other sites More sharing options...
-4 nvh Posted February 14, 2023 Author Share Posted February 14, 2023 pls help me Link to comment Share on other sites More sharing options...
Question
nvh
Server.exe automatically closes when I open it.
Â
Link to comment
Share on other sites
9 answers to this question
Recommended Posts