warwickmm

Results 123 comments of warwickmm

Mostly yes, but there are a [few](https://github.com/duplicati/duplicati/issues/4516#issuecomment-843687852) [indications](https://forum.duplicati.com/t/large-job-stopped-halfway-stuck-in-loops-either-database-is-locked-or-no-filelists-found-on-the-remote-destination-edit-auto-cleanup-bug/11861) that something during `auto-cleanup` could somehow cause this as well.

My guess is that the problem is occurring here, and the `IOException` thrown by the .NET Framework is not including the filename: https://github.com/duplicati/duplicati/blob/0a1b32e1887c98c6034c9fafdfddcb8f8f31e207/Duplicati/Library/Main/Operation/RepairHandler.cs#L65-L66 If that's true, then there should be...

Dismissing the dialog should only hide the dialog. I'm not aware of any situation where logs disappear... The above "Renaming existing db" log entry appears at the `Information` log level,...

Thanks @ts678, I can reproduce this on Linux with your steps. I get the same database locked issue, but on Linux the rename is able to complete successfully. I'll try...

My suspicion is that the database is locked here https://github.com/duplicati/duplicati/blob/0a1b32e1887c98c6034c9fafdfddcb8f8f31e207/Duplicati/Library/Main/Operation/BackupHandler.cs#L431 where the base class constructor begins a transaction https://github.com/duplicati/duplicati/blob/0a1b32e1887c98c6034c9fafdfddcb8f8f31e207/Duplicati/Library/Main/Operation/Common/DatabaseCommon.cs#L41-L47 The auto-repair than tries to create a `LocalRepairDatabase` https://github.com/duplicati/duplicati/blob/0a1b32e1887c98c6034c9fafdfddcb8f8f31e207/Duplicati/Library/Main/Operation/RepairHandler.cs#L41-L50 whose base...

What version of Duplicati? I am unable to reproduce this on 2.0.6.1 or 2.0.5.114. The `alternate-destination-marker` and `alternate-target-paths` settings persist for me. Please provide steps to reproduce the issue so...

Thanks for the clarification @ts678. Given the lack of details, I was only checking screen 5.

Not sure if it's related, but revision 9bfc39120a8c549711e7ed6cd509a9b56d941937 ("Improved handling the compaction process with errors, such that deletes are marked and commited to the database before actually being deleted, causing...

Is this reproducible on a more recent canary? 2.0.5.104 includes some changes to the `CompactHandler` class to deal with other database issues for interrupted backups.