mirror of https://github.com/apache/nifi.git
NIFI-6793 Fix NumberFormatException at CaptureChangeMySQL
This closes #3827 Signed-off-by: Mike Thomsen <mthomsen@apache.org>
This commit is contained in:
parent
8079d2531e
commit
87838e6c31
|
@ -489,7 +489,7 @@ public class CaptureChangeMySQL extends AbstractSessionFactoryProcessor {
|
|||
currentSequenceId.set(seqIdProp.evaluateAttributeExpressions().asInteger());
|
||||
}
|
||||
} else {
|
||||
currentSequenceId.set(Integer.parseInt(seqIdString));
|
||||
currentSequenceId.set(Long.parseLong(seqIdString));
|
||||
}
|
||||
|
||||
// Get reference to Distributed Cache if one exists. If it does not, no enrichment (resolution of column names, e.g.) will be performed
|
||||
|
|
Loading…
Reference in New Issue