From: Lebbeous Fogle-Weekley Date: Thu, 5 Jul 2012 14:00:21 +0000 (-0400) Subject: Squelch useless warning that winds up in open-ils.storage_stderr.log ... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=be46385660c52f04c9fc6ecb8b8a071bb285f013;p=working%2FEvergreen.git Squelch useless warning that winds up in open-ils.storage_stderr.log ... ... consuming disk space endlessly. Signed-off-by: Lebbeous Fogle-Weekley --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/action.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/action.pm index 7c07e6f188..5ca4a653c1 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/action.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/action.pm @@ -1285,7 +1285,7 @@ sub new_hold_copy_targeter { my @good_copies; for my $c (@$all_copies) { # current target - next if ($c->id eq $hold->current_copy); + next if ($c->id eq ''.$hold->current_copy); # skip on circ lib is closed IFF we care my $ignore_closing;