Skip to content

Commit

Permalink
fix the log message of error message for reading optional part header
Browse files Browse the repository at this point in the history
  • Loading branch information
workeatsleep committed May 8, 2024
1 parent cd3a32d commit 50d6136
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 50d6136

Please sign in to comment.