-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sqlite3.ProgrammingError: Recursive use of cursors not allowed #131
Comments
I have the same issue.. |
Feels like this repo is left alone? Can anyone do a release of the fix for this issue? |
@parholmdahl Hello, have you resolved your problem |
Hey @2424004764 if you can prepare a pr, I can take care of it. |
@muatik Hello, what documents do I need to prepare for you? |
@2424004764 you can prepare a pr and explain the change in the commit messages, this should be enough. |
@muatik Sorry, I don't know how to resolve this error yet |
Step 1. modify the config, change sqlite to sqlalchemy based sqlite "storage": {
"engine": "sqlalchemy",
"db_url": "sqlite:///profile.db"
} Step 2. modify # rows = [datetime.utcfromtimestamp(row[0]).strftime(dateFormat) for row in rows]
rows = [datetime.utcfromtimestamp(int(row[0])).strftime(dateFormat) for row in rows] (To fix another problem) Then the profiler could run well.However, some exceptions still occur, but they could be ignored. |
The text was updated successfully, but these errors were encountered: