Bugzilla – Attachment 132177 Details for
Bug 30172
Background jobs failing due to race condition
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30172: Enqueue the job even if rabbitmq is not reachable
Bug-30172-Enqueue-the-job-even-if-rabbitmq-is-not-.patch (text/plain), 1.36 KB, created by
Jonathan Druart
on 2022-03-24 15:24:39 UTC
(
hide
)
Description:
Bug 30172: Enqueue the job even if rabbitmq is not reachable
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2022-03-24 15:24:39 UTC
Size:
1.36 KB
patch
obsolete
>From 3c3b5601d6fa6ac56f4c34174f466b58df8dfb3c Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 24 Mar 2022 16:24:06 +0100 >Subject: [PATCH] Bug 30172: Enqueue the job even if rabbitmq is not reachable > >--- > Koha/BackgroundJob.pm | 12 ++++++++++-- > 1 file changed, 10 insertions(+), 2 deletions(-) > >diff --git a/Koha/BackgroundJob.pm b/Koha/BackgroundJob.pm >index 2bb6f4935dd..b8c010924d5 100644 >--- a/Koha/BackgroundJob.pm >+++ b/Koha/BackgroundJob.pm >@@ -100,6 +100,7 @@ sub enqueue { > > my $borrowernumber = C4::Context->userenv->{number}; # FIXME Handle non GUI calls > my $json_args = encode_json $job_args; >+ > $self->set( > { > status => 'new', >@@ -112,10 +113,17 @@ sub enqueue { > )->store; > > $job_args->{job_id} = $self->id; >- $json_args = encode_json $job_args; > >+ my $conn; >+ try { >+ $conn = $self->connect; >+ } catch { >+ warn "Cannot connect to broker " . $_; >+ }; >+ return unless $conn; >+ >+ $json_args = encode_json $job_args; > try { >- my $conn = $self->connect; > # This namespace is wrong, it must be a vhost instead. > # But to do so it needs to be created on the server => much more work when a new Koha instance is created. > # Also, here we just want the Koha instance's name, but it's not in the config... >-- >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 30172
:
131060
|
131061
|
132023
|
132140
|
132141
|
132176
|
132177
|
132181
|
132182
|
132196
|
132197
|
132241
|
132242