You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2024-05-25T05:44:01+0000 RnQG5qanp7 [info] POST request for step "12"
2024-05-25T05:44:01+0000 RnQG5qanp7 [info] startStep("12")
2024-05-25T05:44:01+0000 RnQG5qanp7 [info] finalize()
2024-05-25T05:44:01+0000 RnQG5qanp7 [info] storage location: /data/updater-ociz9efdik2y/downloads/nextcloud/
2024-05-25T05:44:01+0000 RnQG5qanp7 [info] call opcache_reset()
2024-05-25T05:44:01+0000 RnQG5qanp7 [info] end of finalize()
2024-05-25T05:44:01+0000 RnQG5qanp7 [info] endStep("12")
finalize() does the cleanup - removing the .step file - then we're also calling endStep("12") again somehow according to our logs. This re-adds a .step file again, stuck in step 12.
First seen while troubleshooting some updater issues on the forum, then reviewed the logs from running tests. Indeed.
The text was updated successfully, but these errors were encountered:
I guess we should separate out the .step removal from step 12 so it's always the very last thing done. That way we don't have to rely on the repair step.
Admittedly, the repair step should basically always run if the occ upgrade / doUpgrade() completes, but it's odd we're both removing the file in the Updater then immediately (accidentally) recreating it then relying on the post-Updater upgrade to clean up again.
Though the real cause of the issue I was looking into that turned up the above I suspect is: #567
This doesn't look right:
finalize()
does the cleanup - removing the.step
file - then we're also callingendStep("12")
again somehow according to our logs. This re-adds a .step file again, stuck in step 12.First seen while troubleshooting some updater issues on the forum, then reviewed the logs from running tests. Indeed.
The text was updated successfully, but these errors were encountered: