Bugzilla – Attachment 172199 Details for
Bug 37810
Some SUSHI providers return ServiceActive instead of Service_Active
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37810: Consider ServiceActive on status response
Bug-37810-Consider-ServiceActive-on-status-respons.patch (text/plain), 1.23 KB, created by
David Nind
on 2024-09-29 17:18:13 UTC
(
hide
)
Description:
Bug 37810: Consider ServiceActive on status response
Filename:
MIME Type:
Creator:
David Nind
Created:
2024-09-29 17:18:13 UTC
Size:
1.23 KB
patch
obsolete
>From ab2123a16a79f853818f4119a85444ebc4fb59c5 Mon Sep 17 00:00:00 2001 >From: Pedro Amorim <pedro.amorim@ptfs-europe.com> >Date: Mon, 2 Sep 2024 14:51:31 +0000 >Subject: [PATCH] Bug 37810: Consider ServiceActive on status response > >Some SUSHI providers return ServiceActive instead of the documented Service_Active: >https://countermetrics.stoplight.io/docs/counter-sushi-api/f0dd30f814944-server-status > >This ensures the test connection does not fail regardless of what is used > >Signed-off-by: David Nind <david@davidnind.com> >--- > Koha/ERM/EUsage/UsageDataProvider.pm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/Koha/ERM/EUsage/UsageDataProvider.pm b/Koha/ERM/EUsage/UsageDataProvider.pm >index d70755ae5c..cdb82e31d5 100644 >--- a/Koha/ERM/EUsage/UsageDataProvider.pm >+++ b/Koha/ERM/EUsage/UsageDataProvider.pm >@@ -294,10 +294,10 @@ sub test_connection { > my $status; > if ( ref($result) eq 'ARRAY' ) { > for my $r (@$result) { >- $status = $r->{Service_Active}; >+ $status = $r->{Service_Active} // $r->{ServiceActive}; > } > } else { >- $status = $result->{Service_Active}; >+ $status = $result->{Service_Active} // $result->{ServiceActive}; > } > > if ($status) { >-- >2.39.5
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 37810
:
170947
|
171717
|
171718
|
172198
|
172199
|
172272
|
172273
|
172274