From: Dan Pearl Date: Thu, 25 May 2017 17:57:23 +0000 (-0400) Subject: Initial checkin of code to support fine detail enhancement to SIP X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=bec26ba59f060544f5dc4761042ed17bf3a12916;p=working%2FSIPServer.git Initial checkin of code to support fine detail enhancement to SIP --- diff --git a/SIPconfig.xml b/SIPconfig.xml index 180f4d4..1a3d735 100644 --- a/SIPconfig.xml +++ b/SIPconfig.xml @@ -58,10 +58,13 @@ 127.0.0.1:11211 + + + retries="3" /> diff --git a/Sip/MsgType.pm b/Sip/MsgType.pm index 4079467..12af3b5 100644 --- a/Sip/MsgType.pm +++ b/Sip/MsgType.pm @@ -999,7 +999,7 @@ sub handle_patron_info { $resp .= add_count('patron_info/hold_items', scalar @{$patron->hold_items(undef,undef,1) }); $resp .= add_count('patron_info/overdue_items', scalar @{$patron->overdue_items(undef,undef,1)}); $resp .= add_count('patron_info/charged_items', scalar @{$patron->charged_items(undef,undef,1)}); - $resp .= add_count('patron_info/fine_items', scalar @{$patron->fine_items(undef,undef,1) }); + $resp .= add_count('patron_info/fine_items', scalar @{$patron->fine_items(undef,undef,1,$server) }); $resp .= add_count('patron_info/recall_items', scalar @{$patron->recall_items(undef,undef,1) }); $resp .= add_count('patron_info/unavail_holds', scalar @{$patron->unavail_holds(undef,undef,1)});