build_check -> binary_check

This commit is contained in:
Simon Quigley 2025-01-29 22:38:12 -06:00
parent 29530ab6b5
commit 9a2d090eb4
2 changed files with 2 additions and 2 deletions

View File

@ -958,7 +958,7 @@ bool PackageConf::can_check_builds() {
continue;
}
if (jobstatus->name == "binary_check" && task_ptr) {
if (jobstatus->name == "build_check" && task_ptr) {
binary_check_timestamp = task_ptr->finish_time;
_total_task_count--;
continue;

View File

@ -246,7 +246,7 @@ bool WebServer::start_server(quint16 port) {
if (!pkgconf->can_check_builds()) { continue; }
task_queue->enqueue(
job_statuses->at("binary_check"),
job_statuses->at("build_check"),
[this, pkgconf, proposed](std::shared_ptr<Log> log) mutable {
std::string package_version = pkgconf->upstream_version + "-0ubuntu0~ppa" + std::to_string(pkgconf->ppa_revision);
bool found_in_ppa = false;