Merge pull request #4143 from taosdata/feature/crash_gen

Correcting a tiny display problem in crash_gen tool
This commit is contained in:
Shengliang Guan 2020-11-08 09:58:26 +08:00 committed by GitHub
commit 991feb0720
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -2043,6 +2043,7 @@ class ThreadStacks: # stack info for all threads
print("[{sf}] File {filename}, line {lineno}, in {name}".format(
sf=stackFrame, filename=frame.filename, lineno=frame.lineno, name=frame.name))
print(" {}".format(frame.line))
stackFrame += 1
print("-----> End of Thread Info ----->\n")
class ClientManager: