Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package openQA for openSUSE:Factory checked in at 2025-10-20 13:35:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/openQA (Old) and /work/SRC/openSUSE:Factory/.openQA.new.18484 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openQA" Mon Oct 20 13:35:53 2025 rev:768 rq:1312242 version:5.1760515610.a802d1dd Changes: -------- --- /work/SRC/openSUSE:Factory/openQA/openQA.changes 2025-10-12 22:29:08.765736025 +0200 +++ /work/SRC/openSUSE:Factory/.openQA.new.18484/openQA.changes 2025-10-20 13:36:11.909457054 +0200 @@ -1,0 +2,7 @@ +Sun Oct 19 16:11:35 UTC 2025 - [email protected] + +- Update to version 5.1760515610.a802d1dd: + * Lower the prio of archiving jobs to avoid piling up finalize jobs + * Add signatures in Schema::Result::ApiKeys + +------------------------------------------------------------------- Old: ---- openQA-5.1760245411.e3aeaaec.obscpio New: ---- openQA-5.1760515610.a802d1dd.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ openQA-client-test.spec ++++++ --- /var/tmp/diff_new_pack.Ia7NRa/_old 2025-10-20 13:36:14.845581319 +0200 +++ /var/tmp/diff_new_pack.Ia7NRa/_new 2025-10-20 13:36:14.861581996 +0200 @@ -18,7 +18,7 @@ %define short_name openQA-client Name: %{short_name}-test -Version: 5.1760245411.e3aeaaec +Version: 5.1760515610.a802d1dd Release: 0 Summary: Test package for %{short_name} License: GPL-2.0-or-later ++++++ openQA-devel-test.spec ++++++ --- /var/tmp/diff_new_pack.Ia7NRa/_old 2025-10-20 13:36:15.249598418 +0200 +++ /var/tmp/diff_new_pack.Ia7NRa/_new 2025-10-20 13:36:15.273599433 +0200 @@ -18,7 +18,7 @@ %define short_name openQA-devel Name: %{short_name}-test -Version: 5.1760245411.e3aeaaec +Version: 5.1760515610.a802d1dd Release: 0 Summary: Test package for %{short_name} License: GPL-2.0-or-later ++++++ openQA-test.spec ++++++ --- /var/tmp/diff_new_pack.Ia7NRa/_old 2025-10-20 13:36:15.593612977 +0200 +++ /var/tmp/diff_new_pack.Ia7NRa/_new 2025-10-20 13:36:15.605613485 +0200 @@ -18,7 +18,7 @@ %define short_name openQA Name: %{short_name}-test -Version: 5.1760245411.e3aeaaec +Version: 5.1760515610.a802d1dd Release: 0 Summary: Test package for openQA License: GPL-2.0-or-later ++++++ openQA-worker-test.spec ++++++ --- /var/tmp/diff_new_pack.Ia7NRa/_old 2025-10-20 13:36:15.897625844 +0200 +++ /var/tmp/diff_new_pack.Ia7NRa/_new 2025-10-20 13:36:15.913626521 +0200 @@ -18,7 +18,7 @@ %define short_name openQA-worker Name: %{short_name}-test -Version: 5.1760245411.e3aeaaec +Version: 5.1760515610.a802d1dd Release: 0 Summary: Test package for %{short_name} License: GPL-2.0-or-later ++++++ openQA.spec ++++++ --- /var/tmp/diff_new_pack.Ia7NRa/_old 2025-10-20 13:36:16.209639049 +0200 +++ /var/tmp/diff_new_pack.Ia7NRa/_new 2025-10-20 13:36:16.233640065 +0200 @@ -99,7 +99,7 @@ %define devel_requires %devel_no_selenium_requires chromedriver Name: openQA -Version: 5.1760245411.e3aeaaec +Version: 5.1760515610.a802d1dd Release: 0 Summary: The openQA web-frontend, scheduler and tools License: GPL-2.0-or-later ++++++ openQA-5.1760245411.e3aeaaec.obscpio -> openQA-5.1760515610.a802d1dd.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/openQA-5.1760245411.e3aeaaec/lib/OpenQA/Schema/Result/ApiKeys.pm new/openQA-5.1760515610.a802d1dd/lib/OpenQA/Schema/Result/ApiKeys.pm --- old/openQA-5.1760245411.e3aeaaec/lib/OpenQA/Schema/Result/ApiKeys.pm 2025-10-12 07:03:31.000000000 +0200 +++ new/openQA-5.1760515610.a802d1dd/lib/OpenQA/Schema/Result/ApiKeys.pm 2025-10-15 10:06:50.000000000 +0200 @@ -2,7 +2,7 @@ # SPDX-License-Identifier: GPL-2.0-or-later package OpenQA::Schema::Result::ApiKeys; -use Mojo::Base 'DBIx::Class::Core'; +use Mojo::Base 'DBIx::Class::Core', -signatures; use OpenQA::Utils 'random_hex'; @@ -33,9 +33,7 @@ __PACKAGE__->add_unique_constraint([qw(key)]); __PACKAGE__->belongs_to(user => 'OpenQA::Schema::Result::Users', 'user_id'); -sub new { - my ($class, $attrs) = @_; - +sub new ($class, $attrs) { $attrs->{key} = random_hex() unless $attrs->{key}; $attrs->{secret} = random_hex() unless $attrs->{secret}; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/openQA-5.1760245411.e3aeaaec/lib/OpenQA/Task/Job/Limit.pm new/openQA-5.1760515610.a802d1dd/lib/OpenQA/Task/Job/Limit.pm --- old/openQA-5.1760245411.e3aeaaec/lib/OpenQA/Task/Job/Limit.pm 2025-10-12 07:03:31.000000000 +0200 +++ new/openQA-5.1760515610.a802d1dd/lib/OpenQA/Task/Job/Limit.pm 2025-10-15 10:06:50.000000000 +0200 @@ -53,7 +53,7 @@ my $groups = $schema->resultset('JobGroups'); my $gru = $app->gru; - my %options = (priority => 0, ttl => 2 * ONE_DAY); + my %options = (priority => -20, ttl => 2 * ONE_DAY); while (my $group = $groups->next) { my $preserved_important_jobs; $group->limit_results_and_logs(\$preserved_important_jobs); ++++++ openQA.obsinfo ++++++ --- /var/tmp/diff_new_pack.Ia7NRa/_old 2025-10-20 13:36:34.950431330 +0200 +++ /var/tmp/diff_new_pack.Ia7NRa/_new 2025-10-20 13:36:34.954431498 +0200 @@ -1,5 +1,5 @@ name: openQA -version: 5.1760245411.e3aeaaec -mtime: 1760245411 -commit: e3aeaaeca2d664958ef0ce437a92d70d849d02c0 +version: 5.1760515610.a802d1dd +mtime: 1760515610 +commit: a802d1dd235bc62d964281a687097c20b0f46cd4
