diff options
-rwxr-xr-x | lib/common-functions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common-functions b/lib/common-functions index 15b4fa8..73628b7 100755 --- a/lib/common-functions +++ b/lib/common-functions @@ -980,7 +980,7 @@ update_blocked_packages_count() { printf ' OR `b_bp`.`architecture`=%s' \ "${architecture_ids__any}" } | \ - mysql_run_query | \ + mysql_run_query 'unimportant' | \ tr '\t' ' ' | \ sort -u | \ sort -k1,1 > \ @@ -1039,6 +1039,6 @@ update_blocked_packages_count() { printf ' ON `build_assignments`.`id`=`lc`.`ba_id`' printf ' SET `build_assignments`.`currently_blocking`=`lc`.`count`;\n' } | \ - mysql_run_query + mysql_run_query 'unimportant' ) } |