From f429ad7d8c23975d53f7d628d96661895b21d9a2 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Fri, 28 Jan 2011 00:58:40 +0100 Subject: [PATCH] don't eval full-text update, it breaks our re-try logic --- bin/BackupPC_ASA_SearchUpdate | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 } } -- 2.20.1