https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40006
--- Comment #5 from Jonathan Druart <[email protected]> --- I have seen this 0E0 happening in the output of our test suite https://jenkins.koha-community.org/job/Koha_Main/3317/consoleFull twice: 00:49:06 koha_1 | Upgrade to 21.05.00.000 [22:48:57]: Koha 21.05.00 release 00:49:06 koha_1 | 0E0 00:49:06 koha_1 | Upgrade to 21.06.00.000 [22:48:57]: Increase DBRev for 21.06 00:49:12 koha_1 | Upgrade to 25.06.00.006 [22:49:06]: Bug 37883 - Add system preference FilterSearchResultsByLoggedInBranch 00:49:12 koha_1 | Added new system preference 'FilterSearchResultsByLoggedInBranch' 00:49:12 koha_1 | Running [koha-mysql kohadev -e 'UPDATE systempreferences SET value="21.1100000" WHERE variable="version"']... 00:49:12 koha_1 | Running [sudo koha-shell kohadev -p -c 'perl /kohadevbox/koha/installer/data/mysql/updatedatabase.pl']... 00:49:12 koha_1 | Use of uninitialized value $biblio_adds_authorities in string eq at /kohadevbox/koha/installer/data/mysql/db_revs/220600047.pl line 12. 00:49:12 koha_1 | Use of uninitialized value $pref in string eq at /kohadevbox/koha/installer/data/mysql/db_revs/231200005.pl line 89. 00:49:12 koha_1 | 0E0 00:49:12 koha_1 | Upgrade to 21.12.00.000 [22:49:07]: Increase DBRev for 21.12 May come from (to confirm): installer/data/mysql/updatedatabase.pl 29463 unless ( $ENV{HTTP_HOST} ) { # Is that correct? 29464 my $files = get_db_entries; 29465 my $report = update( $files, { force => $force } ); 29466 29467 my $error_code = 0; 29468 for my $s ( @{ $report->{success} } ) { 29469 say Encode::encode_utf8( join "\n", @{ $s->{output} } ); 29470 } 29471 for my $e ( @{ $report->{error} } ) { 29472 say Encode::encode_utf8( join "\n", @{ $e->{output} } ); 29473 $error_code = 1; 29474 } 29475 29476 my $atomic_update_files = get_atomic_updates; 29477 $report = run_atomic_updates($atomic_update_files); 29478 for my $s ( @{ $report->{success} } ) { 29479 say Encode::encode_utf8( join "\n", @{ $s->{output} } ); 29480 } 29481 for my $e ( @{ $report->{error} } ) { 29482 say Encode::encode_utf8( join "\n", @{ $e->{output} } ); 29483 $error_code = 1; 29484 } 29485 exit $error_code; 29486 } -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
