jj: Weitere Jobs bei Fehler in RunIndexing überspringen

This commit is contained in:
Jonathan Jenne 2019-01-07 14:15:09 +01:00
parent fd30d75e9f
commit 2e78eefe4e

View File

@ -367,7 +367,12 @@ Public Class clsProfil
If arrValue Is Nothing = False Then
' MsgBox("now indexing with: " & idxvalue)
windream_index.RunIndexing(WMdok, arrIndex, arrValue, _profObjekttyp)
Dim oErrorOccurred = windream_index.RunIndexing(WMdok, arrIndex, arrValue, _profObjekttyp)
' 07.01.2019: Weitere Jobs bei Fehler in RunIndexing überspringen
If oErrorOccurred = True Then
FileJobSuccessful = False
End If
Else
Logger.Warn("arrValue is nothing - keine Indexierung")
End If