Fix placeholder format for manual indexes in automatic indexes

This commit is contained in:
Jonathan Jenne
2023-01-31 14:52:07 +01:00
parent 3995c6c9fd
commit 8f129647fb
2 changed files with 5 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ Public Class ClassPatterns
Public Const INT_VALUE_DOMAIN = "DOMAIN"
Public Const INT_VALUE_DATE = "DATE"
Public Const MAX_TRY_COUNT = 500
Public Const MAX_TRY_COUNT = 20
Private Shared ReadOnly regex As Regex = New Regex("{#(\w+)#([\.\w\d\s_-]+)}+")
Private Shared ReadOnly allPatterns As New List(Of String) From {PATTERN_WMI, PATTERN_CTRL, PATTERN_IDBA, PATTERN_USER, PATTERN_INT}
@@ -260,7 +260,7 @@ Public Class ClassPatterns
oTryCounter += 1
End While
LOGGER.Debug("input after ReplaceControlValues [{input}]")
LOGGER.Debug($"input after ReplaceControlValues [{input}]")
Return result
Catch ex As Exception
LOGGER.Error(ex)