File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/io/elastic/jdbc/triggers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ public final void execute(ExecutionParameters parameters) {
51
51
52
52
if (snapshot .containsKey (PROPERTY_POLLING_VALUE ) && Utils
53
53
.getNonNullString (snapshot , PROPERTY_POLLING_VALUE ).matches (DATETIME_REGEX )) {
54
- pollingValue = Timestamp .valueOf (configuration .getString (PROPERTY_POLLING_VALUE ));
55
- } else if (configuration .containsKey (PROPERTY_POLLING_VALUE ) && Utils
54
+ pollingValue = Timestamp .valueOf (snapshot .getString (PROPERTY_POLLING_VALUE ));
55
+ } else if (configuration .containsKey (PROPERTY_POLLING_VALUE ) && Utils
56
56
.getNonNullString (configuration , PROPERTY_POLLING_VALUE ).matches (DATETIME_REGEX )) {
57
57
pollingValue = Timestamp .valueOf (configuration .getString (PROPERTY_POLLING_VALUE ));
58
58
} else {
You can’t perform that action at this time.
0 commit comments