Ensure source checks are retried if failed

main
Simon Quigley 2 weeks ago
parent fca016b1df
commit a4567f33d3

@ -912,8 +912,9 @@ bool PackageConf::can_check_source_upload() {
continue; continue;
} }
if (jobstatus->name == "source_check" && task_ptr && !task_ptr->successful) { if (jobstatus->name == "source_check" && task_ptr) {
source_check_timestamp = task_ptr->finish_time; if (task_ptr->successful) source_check_timestamp = task_ptr->finish_time;
_successful_task_count--;
continue; continue;
} }
} }

Loading…
Cancel
Save