From: Dobrica Pavlinusic Date: Thu, 27 Jan 2011 23:58:40 +0000 (+0100) Subject: don't eval full-text update, it breaks our re-try logic X-Git-Url: http://git.rot13.org/?p=BackupPC.git;a=commitdiff_plain;h=f429ad7d8c23975d53f7d628d96661895b21d9a2;ds=sidebyside don't eval full-text update, it breaks our re-try logic --- diff --git a/bin/BackupPC_ASA_SearchUpdate b/bin/BackupPC_ASA_SearchUpdate index 034642f..2a93dcd 100755 --- a/bin/BackupPC_ASA_SearchUpdate +++ b/bin/BackupPC_ASA_SearchUpdate @@ -598,8 +598,10 @@ foreach my $host_key (@hosts) { if ($nf + $nd > 0) { status "$hostname $backupNum full-text | indexing"; - eval { hest_update($hostID, $shareID, $backupNum) }; - warn "ERROR: $@" if $@; + #eval { hest_update($hostID, $shareID, $backupNum) }; + #warn "ERROR: $@" if $@; + hest_update($hostID, $shareID, $backupNum); + # eval breaks our re-try logic } }