-
Notifications
You must be signed in to change notification settings - Fork 671
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
DatabaseErrorTest failing sporadically #12096
Comments
I am seeing intermittent crashes in some of the sync tests, too, which "magically go away" on re-run locally. I think it very well could be the same thing. |
this was not actually fixed by the linked PR - the tests failed with same issues described here on first run. as before, rerunning the tests "fixes" it |
https://github.com/owncloud/client/actions/runs/13808828494/job/38625517125?pr=12081
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Observation
This assert happens when
ChronoElapsedTimer::stop()
is called consecutively.Occurrences:
client/src/libsync/httplogger.cpp
Line 183 in 3a94ba5
client/src/libsync/syncengine.cpp
Line 675 in 3a94ba5
Hypothesis
Within the HttpLogger the timer is reset and stopped under various conditions. I suspect that under some circumstances timer.stop() caan be called twice or a related ::reset() is missing.
The text was updated successfully, but these errors were encountered: