We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca1d3a0 commit 862385fCopy full SHA for 862385f
src/main/java/io/elastic/jdbc/triggers/GetRowsPollingTrigger.java
@@ -54,7 +54,7 @@ public final void execute(ExecutionParameters parameters) {
54
pollingValue = Timestamp.valueOf(configuration.getString(PROPERTY_POLLING_VALUE));
55
} else if (configuration.containsKey(PROPERTY_POLLING_VALUE) && Utils
56
.getNonNullString(configuration, PROPERTY_POLLING_VALUE).matches(DATETIME_REGEX)) {
57
- pollingValue = Timestamp.valueOf(snapshot.getString(PROPERTY_POLLING_VALUE));
+ pollingValue = Timestamp.valueOf(configuration.getString(PROPERTY_POLLING_VALUE));
58
} else {
59
LOGGER.info(
60
"There is an empty value for Start Polling From at the config and snapshot. So, we set Current Date = "
0 commit comments