Fixing libaio integration / creation
My last patch had a little flaw around libaio load (The main script is not finding the .so properly) and my configuration was wrong
This commit is contained in:
parent
50c3dda871
commit
46df777edb
|
@ -418,7 +418,7 @@ public class Create extends ActionAbstract
|
|||
}
|
||||
else
|
||||
{
|
||||
filters.put("${journal.settings}", "AIO");
|
||||
filters.put("${journal.settings}", "ASYNCIO");
|
||||
}
|
||||
|
||||
filters.put("${user}", System.getProperty("user.name", ""));
|
||||
|
|
|
@ -29,7 +29,7 @@ under the License.
|
|||
|
||||
<core xmlns="urn:activemq:core">
|
||||
|
||||
<!-- this could be AIO or NIO
|
||||
<!-- this could be ASYNCIO or NIO
|
||||
-->
|
||||
<journal-type>${journal.settings}</journal-type>
|
||||
|
||||
|
|
|
@ -103,6 +103,6 @@ fi
|
|||
exec "$JAVACMD" $JAVA_ARGS $ARTEMIS_CLUSTER_PROPS \
|
||||
-classpath "$CLASSPATH" \
|
||||
-Dartemis.home="$ARTEMIS_HOME" \
|
||||
-Djava.library.path="$ARTEMIS_HOME/bin/lib/linux-i686:$ARTEMIS_INSTANCE/bin/lib/linux-x86_64" \
|
||||
-Djava.library.path="$ARTEMIS_HOME/bin/lib/linux-i686:$ARTEMIS_HOME/bin/lib/linux-x86_64" \
|
||||
$DEBUG_ARGS \
|
||||
org.apache.activemq.artemis.boot.Artemis $@
|
||||
|
|
Loading…
Reference in New Issue