Replies: 1 comment 1 reply
-
I think we discussed this via email also? If I recall correctly, you identified the problem with the file sync and fixed it. Let me know if you still need more input. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, Abraham and community
I encontered some problems when using rootpainter client. After I clicked "Save & Next >", the button stayed at "loading.."(for a long time). Then, if I click the window, it will show "not responding". (in these screenshots bellow, "未响应" means "not responding")
While the sever terminal seems fine.
Kind regards,
Zihao
(Updated on 2023.11.22)
When the process is not responding, I generated a dump file for the specific process, then I used WinDbg and chatgpt to analyize the dump file.Here's a summary of the analysis:
Exception Information:
This indicates a breakpoint exception, suggesting that the program encountered a breakpoint during execution.
Stack Trace:
The stack trace shows the function call path at the time of the crash, with
ntdll!NtOpenFile
potentially being the last called function.Module Information:
The exception occurred in the python38.dll module, which is the core library of the Python interpreter.
Crash Point Information:
The crash point is located at offset 0x180f in the python38.dll module.
Based on this information, one possible cause is that the program attempted to execute a breakpoint, which could be triggered by debugging operations or certain conditions. In normal operation, encountering a breakpoint exception is unexpected.
The complete analysis results of windbg are in the txt file below.
Exception Analysis .txt
Beta Was this translation helpful? Give feedback.
All reactions