fixed bug that appeared when a new crawl ist started

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4989 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 17 years ago
parent 38eb5bd1ee
commit 606b323a2d

@ -176,7 +176,7 @@ public class Balancer {
public synchronized CrawlEntry get(String urlhash) throws IOException {
assert urlhash != null;
if (urlFileIndex == null) return null; // case occurrs during shutdown
if (urlFileIndex == null) return null; // case occurs during shutdown
kelondroRow.Entry entry = urlFileIndex.get(urlhash.getBytes());
if (entry == null) return null;
return new CrawlEntry(entry);

@ -101,6 +101,7 @@ public class CrawlQueues {
public yacyURL getURL(String urlhash) {
assert urlhash != null;
if (urlhash == null || urlhash.length() == 0) return null;
CrawlEntry ne = noticeURL.get(urlhash);
if (ne != null) return ne.url();
ZURL.Entry ee = delegatedURL.getEntry(urlhash);

@ -186,6 +186,7 @@ public class kelondroRowSet extends kelondroRowCollection implements kelondroInd
if ((this.rowdef.objectOrder != null) && (this.rowdef.objectOrder instanceof kelondroBase64Order) && (this.sortBound > 4000)) {
// first try to find in sorted area
assert this.rowdef.objectOrder.wellformed(a, astart, alength) : "not wellformed: " + new String(a, astart, alength);
final byte[] compiledPivot = compilePivot(a, astart, alength);
int p = binarySearchCompiledPivot(compiledPivot);
if (p >= 0) return p;

Loading…
Cancel
Save