Skip to content

Commit

Permalink
fix(sql): Slightly more buffer when migrating s3 objects
Browse files Browse the repository at this point in the history
  • Loading branch information
ajordens committed Jul 8, 2019
1 parent 0b0420a commit 5f12945
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class StorageServiceMigrator(
* - has been more recently modified in 'source'
* (with "some" buffer to account for precision loss on s3 due to RFC 1123 being used for last modified values)
*/
!targetObjectKeys.containsKey(e.key) || targetObjectKeys[e.key]!! < (e.value - 1000)
!targetObjectKeys.containsKey(e.key) || targetObjectKeys[e.key]!! < (e.value - 1500)
}

if (migratableObjectKeys.isEmpty()) {
Expand Down

0 comments on commit 5f12945

Please sign in to comment.