martinzink commented on code in PR #1623:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1623#discussion_r1281760440
##########
extensions/sftp/processors/ListSFTP.cpp:
##########
@@ -535,9 +535,9 @@ void ListSFTP::listByTrackingTimestamps(
/* Determine the minimum reliable timestamp based on precision */
auto minimum_reliable_timestamp = now - listing_lag;
if (remote_system_timestamp_precision ==
TARGET_SYSTEM_TIMESTAMP_PRECISION_SECONDS) {
- std::chrono::floor<std::chrono::seconds>(minimum_reliable_timestamp);
+ minimum_reliable_timestamp =
std::chrono::floor<std::chrono::seconds>(minimum_reliable_timestamp);
Review Comment:
This seems like an actual bugfix :+1: , should we file a Jira for this? (and
maybe even some tests?)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]