nizhikov commented on code in PR #12626:
URL: https://github.com/apache/ignite/pull/12626#discussion_r2685436954
##########
modules/binary/api/src/main/java/org/apache/ignite/internal/binary/BinaryUtils.java:
##########
@@ -179,6 +180,20 @@ TreeSet.class, new BinaryTreeSetWriteReplacer()
/** FNV1 hash prime. */
private static final int FNV1_PRIME = 0x01000193;
+ /** */
+ public static final BinariesFactory binariesFactory;
+
+ static {
+ Iterator<BinariesFactory> factories =
CommonUtils.loadService(BinariesFactory.class).iterator();
+
+ A.ensure(
+ factories.hasNext(),
+ "Implementation for BinariesFactory service not found. Please add
ignite-binary-impl to classpath"
Review Comment:
Done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]