Describe the bug
User's backup was getting uploaded to Google Drive multiple times. Uploads took just over 5 minutes to complete. Brad found that the upload job status was never set to 'running', which prompted the run script to fire off another upload while the first upload was still in progress.
Issue was fixed by adding $job[status] = 'running'; at /admin/class-boldgrid-backup-admin-jobs.php#L249
Describe the bug User's backup was getting uploaded to Google Drive multiple times. Uploads took just over 5 minutes to complete. Brad found that the upload job status was never set to 'running', which prompted the run script to fire off another upload while the first upload was still in progress.
Issue was fixed by adding
$job[status] = 'running';
at /admin/class-boldgrid-backup-admin-jobs.php#L249