- Issue created by @Grevil
- 🇩🇪Germany Grevil
The problem of this lies in "/src/Drupal/Destination/DrupalBrowserDownloadDestination.php". The
exit()
call will stop further code from executing (including taking the site out of maintenance mode). Removing theexit()
call will break the module though (see 🐛 Download errors, backup files contain trailing HTML, corrupts archive backups Needs work ). So we might need to take the site online, before callingexit()
! - 🇩🇪Germany Grevil
Let us also add tests, to check if the created backup file is NOT broken.