Skip to content

Commit

Permalink
Update src/main/java/org/opensearch/knn/index/codec/transfer/OffHeapV…
Browse files Browse the repository at this point in the history
…ectorTransferFactory.java

Co-authored-by: Navneet Verma <[email protected]>
Signed-off-by: Tejas Shah <[email protected]>
  • Loading branch information
shatejas and navneet1v authored Aug 19, 2024
1 parent a24e641 commit 2256603
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static <T> OffHeapVectorTransfer<T> getVectorTransfer(final VectorDataTyp
case BYTE:
return (OffHeapVectorTransfer<T>) new OffHeapByteVectorTransfer(transferLimit);
default:
throw new IllegalArgumentException("Unsupported vector data type: " + vectorDataType);
throw new IllegalArgumentException("No Valid VectorTransfer implementation found for vector dataType : " + vectorDataType);
}
}
}

0 comments on commit 2256603

Please sign in to comment.