This commit is contained in:
Digital Data - Marlon Schreiber 2019-02-15 10:21:21 +01:00
commit fb92a0fd1c
2 changed files with 8 additions and 3 deletions

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

View File

@ -18,7 +18,7 @@ Imports System.Runtime.InteropServices
<Assembly: ComVisible(False)>
'Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
<Assembly: Guid("1f08708a-1a24-4add-a049-0e53d7fe374e")>
<Assembly: Guid("1f08708a-1a24-4add-a049-0e53d7fe374e")>
' Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
'
@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyVersion("1.0.0.1")>
<Assembly: AssemblyFileVersion("1.0.0.0")>