Skip to content

Commit

Permalink
HDDS-1875. Fix failures in TestS3MultipartUploadAbortResponse. (#1188)
Browse files Browse the repository at this point in the history
  • Loading branch information
bharatviswa504 authored and arp7 committed Jul 31, 2019
1 parent 90e5eb0 commit a6f47b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public S3MultipartUploadAbortResponse createS3AbortMPUResponse(
.setAbortMultiPartUploadResponse(
MultipartUploadAbortResponse.newBuilder().build()).build();

return new S3MultipartUploadAbortResponse(multipartKey, Time.now(),
return new S3MultipartUploadAbortResponse(multipartKey, timeStamp,
omMultipartKeyInfo,
omResponse);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void testAddDBToBatchWithParts() throws Exception {
PartKeyInfo part1 = createPartKeyInfo(volumeName, bucketName,
keyName, 1);
PartKeyInfo part2 = createPartKeyInfo(volumeName, bucketName,
keyName, 1);
keyName, 2);

addPart(1, part1, omMultipartKeyInfo);
addPart(2, part2, omMultipartKeyInfo);
Expand Down

0 comments on commit a6f47b5

Please sign in to comment.