Re: [akka-user] Re: problem with Testing persistence actor

2015-07-09 Thread Avi Levi
Thanks , I am using the default journal . when I run the tests from the IDE (intellij ) tthey run fine , I am getting that error when I run tests from maven (mvn clean install or test ) 2015-07-09 22:51 GMT+03:00 Magnus Andersson : > What type of journal/storage are you using? > Perhaps you are

[akka-user] Re: problem with Testing persistence actor

2015-07-09 Thread Magnus Andersson
What type of journal/storage are you using? Perhaps you are sharing the default LevelDB journal which is meant for one actor only and having multiple tests trying to access it concurrently? I would recommend using the in memory journal found on community contributions page when running tests. /