Skip to content

Commit

Permalink
added more info in assert in balancer
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6782 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Mar 28, 2010
1 parent 000dad0 commit ba51d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/crawler/Balancer.java
Expand Up @@ -250,7 +250,7 @@ public void push(final Request entry) throws IOException, RowSpaceExceededExcept
// add to index
final int s = urlFileIndex.size();
urlFileIndex.put(entry.toRow());
assert s < urlFileIndex.size() : "hash = " + hash;
assert s < urlFileIndex.size() : "hash = " + hash + ", s = " + s + ", size = " + urlFileIndex.size();
assert urlFileIndex.has(hash.getBytes()) : "hash = " + hash;

// add the hash to a queue
Expand Down

0 comments on commit ba51d14

Please sign in to comment.