Skip to content

Commit

Permalink
minor fix, new version of java driver
Browse files Browse the repository at this point in the history
  • Loading branch information
sboesebeck committed Aug 8, 2014
1 parent 53d74fd commit 6387d88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>2.12.2</version>
<version>2.12.3</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
Expand Down
4 changes: 2 additions & 2 deletions test/de/caluga/test/mongo/suite/CacheSyncTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -378,9 +378,9 @@ public Msg onMessage(Messaging msg, Msg m) {
Thread.sleep(60000);

long l = m1.createQueryFor(Msg.class).countAll();
assert (l == 1) : "too many messages? " + l;
assert (l <= 1) : "too many messages? " + l;

createCachedObjects(50);
// createCachedObjects(50);


// Thread.sleep(90000); //wait for messages to be cleared
Expand Down

0 comments on commit 6387d88

Please sign in to comment.