Skip to content

Commit

Permalink
Merge pull request #680 from Netflix/fix-log-message
Browse files Browse the repository at this point in the history
fix the log of error message for reading optional part header
  • Loading branch information
workeatsleep committed May 13, 2024
2 parents cd3a32d + 50d6136 commit 43d8541
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public HollowBlobOptionalPartHeader readPartHeader(HollowBlobInput in) throws IO
int headerVersion = in.readInt();
if(headerVersion != HollowBlobOptionalPartHeader.HOLLOW_BLOB_PART_VERSION_HEADER) {
throw new IOException("The HollowBlob optional part you are trying to read is incompatible. "
+ "The expected Hollow blob version was " + HollowBlobHeader.HOLLOW_BLOB_VERSION_HEADER
+ "The expected Hollow blob version was " + HollowBlobOptionalPartHeader.HOLLOW_BLOB_PART_VERSION_HEADER
+ " but the actual version was " + headerVersion);
}

Expand Down

0 comments on commit 43d8541

Please sign in to comment.