fgerlits commented on code in PR #1798:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1798#discussion_r1610206267


##########
extensions/aws/s3/MultipartUploadStateStorage.h:
##########
@@ -41,13 +41,13 @@ struct MultipartUploadState {
     : upload_id(upload_id),
       part_size(part_size),
       full_size(full_size),
-      upload_time(upload_time) {}
+      upload_time(upload_time.Millis()) {}
   std::string upload_id;
   size_t uploaded_parts{};
   uint64_t uploaded_size{};
   uint64_t part_size{};
   uint64_t full_size{};
-  Aws::Utils::DateTime upload_time;
+  int64_t upload_time;

Review Comment:
   changed back to `Aws::Utils::DateTime` in 
2bc4da086a21e1e42a39a344f3d51aba986f221c, but now storing ticks (nanoseconds) 
instead of milliseconds in the state



-- 
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]

Reply via email to