You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ra...@apache.org on 2008/06/13 16:11:43 UTC

svn commit: r667549 - /incubator/qpid/trunk/qpid/java/cpp.async.testprofile

Author: rajith
Date: Fri Jun 13 07:11:43 2008
New Revision: 667549

URL: http://svn.apache.org/viewvc?rev=667549&view=rev
Log:
Changed the store path back to what it was.
I think we need to provide a better solution for this as making an assumption for the store path in incovinient.
We could use an env var like STORE_PATH that people can set and that will avoid hardcoding a particular path


Modified:
    incubator/qpid/trunk/qpid/java/cpp.async.testprofile

Modified: incubator/qpid/trunk/qpid/java/cpp.async.testprofile
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/cpp.async.testprofile?rev=667549&r1=667548&r2=667549&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/java/cpp.async.testprofile (original)
+++ incubator/qpid/trunk/qpid/java/cpp.async.testprofile Fri Jun 13 07:11:43 2008
@@ -1,5 +1,5 @@
 broker.version=0-10
-broker=${project.root}/../cpp/src/qpidd --data-dir ${build.data} -t --load-module /opt/workspace/rhmessaging/cpp/lib/.libs/libbdbstore.so --auth no
+broker=${project.root}/../cpp/src/qpidd --data-dir ${build.data} -t --load-module ${project.root}/../../cppStore/cpp/lib/.libs/libbdbstore.so --auth no
 broker.clean=${project.root}/clean-dir ${build.data}
 broker.ready=Listening on TCP port
 java.naming.provider.url=${project.root}/test-provider.properties



Re: svn commit: r667549 - /incubator/qpid/trunk/qpid/java/cpp.async.testprofile

Posted by Carl Trieloff <cc...@redhat.com>.
rajith@apache.org wrote:
> Author: rajith
> Date: Fri Jun 13 07:11:43 2008
> New Revision: 667549
>
> URL: http://svn.apache.org/viewvc?rev=667549&view=rev
> Log:
> Changed the store path back to what it was.
> I think we need to provide a better solution for this as making an assumption for the store path in incovinient.
> We could use an env var like STORE_PATH that people can set and that will avoid hardcoding a particular path
>
>   

Should just place copy of store in default location for --module-dir and 
then no directory is required. then to not load
modules, set --no-module-dir

Carl.