SteNicholas commented on code in PR #2476:
URL: https://github.com/apache/celeborn/pull/2476#discussion_r1575945296
##########
pom.xml:
##########
@@ -1675,6 +1682,20 @@
</build>
</profile>
+ <!-- use org.openlabtesting.leveldbjni on aarch64 platform except MacOS -->
+ <profile>
+ <id>aarch64</id>
+ <activation>
+ <os>
+ <family>linux</family>
+ <arch>aarch64</arch>
+ </os>
+ </activation>
+ <properties>
+ <leveldbjni.group>org.openlabtesting.leveldbjni</leveldbjni.group>
Review Comment:
@pan3793, it seems to be a super set of original leveldbjni according to
https://github.com/theopenlab/leveldbjni/commit/aa6b14a50a9acb2681102975107784f052f1ceeb.
To be on the safe side, it’s better to keep the same behavior that activates
this profile based on OS settings automatically.
--
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]