[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] CVS: koha/acqui.simple processz3950queue,1.3.2.6,1.3.2.7
From: |
Steve Tonnesen |
Subject: |
[Koha-cvs] CVS: koha/acqui.simple processz3950queue,1.3.2.6,1.3.2.7 |
Date: |
Wed, 04 Dec 2002 09:50:12 -0800 |
Update of /cvsroot/koha/koha/acqui.simple
In directory sc8-pr-cvs1:/tmp/cvs-serv16100
Modified Files:
Tag: rel-1-2
processz3950queue
Log Message:
Z39.50 queries that take longer than 20 minutes are marked as done. Hack that
should more properly be handled by better error checking when busy z39.50
servers (LOC typically) drop the connection.
Index: processz3950queue
===================================================================
RCS file: /cvsroot/koha/koha/acqui.simple/Attic/processz3950queue,v
retrieving revision 1.3.2.6
retrieving revision 1.3.2.7
diff -C2 -r1.3.2.6 -r1.3.2.7
*** processz3950queue 18 Nov 2002 21:47:49 -0000 1.3.2.6
--- processz3950queue 4 Dec 2002 17:50:10 -0000 1.3.2.7
***************
*** 72,77 ****
--- 72,87 ----
$serverdone{$r_server}=1;
} elsif ($active) {
+ my $now=time();
+ if ($now-$r_startdate > 1000) {
+ my $sti=$dbh->prepare("update z3950results set
enddate=$now where id=$r_id");
+ $sti->execute;
+ }
$serverdone{$r_server}=1;
} else {
+ my $now=time();
+ if ($now-$r_startdate > 1000) {
+ my $sti=$dbh->prepare("update z3950results set
enddate=$now where id=$r_id");
+ $sti->execute;
+ }
$serverdone{$r_server}=-1;
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] CVS: koha/acqui.simple processz3950queue,1.3.2.6,1.3.2.7,
Steve Tonnesen <=
- Prev by Date:
[Koha-cvs] CVS: koha/acqui.simple marcimport.pl,1.6.2.35,1.6.2.36
- Next by Date:
[Koha-cvs] CVS: koha/opac opac-membership.pl,1.1,1.2 opac-readingrecord.pl,1.1,1.2 opac-renew.pl,1.1,1.2 opac-sidebar.pl,1.1,1.2 opac-userdetails.pl,1.1,1.2 opac-account.pl,1.2,1.3 opac-detail.pl,1.5,1.6 opac-main.pl,1.4,1.5 opac-reserve.pl,1.3,1.4 opac-search.pl,1.4,1.5 opac-searchresults.pl,1.5,1.6 opac-user.pl,1.4,1.5 opac-userupdate.pl,1.4,1.5
- Previous by thread:
[Koha-cvs] CVS: koha/acqui.simple marcimport.pl,1.6.2.35,1.6.2.36
- Next by thread:
[Koha-cvs] CVS: koha/opac opac-membership.pl,1.1,1.2 opac-readingrecord.pl,1.1,1.2 opac-renew.pl,1.1,1.2 opac-sidebar.pl,1.1,1.2 opac-userdetails.pl,1.1,1.2 opac-account.pl,1.2,1.3 opac-detail.pl,1.5,1.6 opac-main.pl,1.4,1.5 opac-reserve.pl,1.3,1.4 opac-search.pl,1.4,1.5 opac-searchresults.pl,1.5,1.6 opac-user.pl,1.4,1.5 opac-userupdate.pl,1.4,1.5
- Index(es):