Bugzilla – Attachment 155060 Details for
Bug 34685
updatedatabase.pl does not propagate the error code
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34685: Make updatedatabase.pl propagate the error
Bug-34685-Make-updatedatabasepl-propagate-the-erro.patch (text/plain), 1.64 KB, created by
Jonathan Druart
on 2023-09-01 08:00:54 UTC
(
hide
)
Description:
Bug 34685: Make updatedatabase.pl propagate the error
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2023-09-01 08:00:54 UTC
Size:
1.64 KB
patch
obsolete
>From b0ce985af5d857bed377c049bb562fee79b57e4d Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 1 Sep 2023 09:10:52 +0200 >Subject: [PATCH] Bug 34685: Make updatedatabase.pl propagate the error > >updatedatabase.pl already return 0 even if an error occurred during the upgrade. > >Test plan: >Adjust a db rev to make it fail and modify the value of the syspref 'version' in DB to >make the db rev run. > >Run updatedabase.pl and `echo $?` >--- > installer/data/mysql/updatedatabase.pl | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > >diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl >index 06f98e8e614..b8f2babbdd1 100755 >--- a/installer/data/mysql/updatedatabase.pl >+++ b/installer/data/mysql/updatedatabase.pl >@@ -24295,12 +24295,14 @@ unless ( $ENV{HTTP_HOST} ) { # Is that correct? > my $files = get_db_entries; > my $report = update( $files, { force => $force } ); > >+ my $error_code = 0; > for my $s ( @{ $report->{success} } ) { > say Encode::encode_utf8(join "\n", @{$s->{output}}); > } > for my $e ( @{ $report->{error} } ) { > say Encode::encode_utf8(join "\n", @{$e->{output}}); > say Encode::encode_utf8("ERROR - " . $e->{error}); >+ $error_code = 1; > } > > my $atomic_update_files = get_atomic_updates; >@@ -24311,9 +24313,9 @@ unless ( $ENV{HTTP_HOST} ) { # Is that correct? > for my $e ( @{ $report->{error} } ) { > say Encode::encode_utf8(join "\n", @{$e->{output}}); > say Encode::encode_utf8("ERROR - " . $e->{error}); >+ $error_code = 1; > } >- >- >+ exit $error_code; > } > > exit; >-- >2.25.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 34685
:
155057
|
155060
|
155247
|
155274