another fix for url-db migration

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2834 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 18 years ago
parent 83a0efc65a
commit 1825540020

@ -1140,7 +1140,13 @@ public final class yacy {
plasmaCrawlLURLEntry.Components comp;
byte[] dummymd5 = new byte[0];
while (eiter.hasNext()) {
oldrow = (kelondroRow.Entry) eiter.next();
try {
oldrow = (kelondroRow.Entry) eiter.next();
} catch (Exception e) {
// an IOException may occur here
e.printStackTrace();
oldrow = null;
}
if (oldrow != null) try {
oldentry = new plasmaCrawlLURLOldEntry(oldrow, null);
comp = oldentry.comp();

Loading…
Cancel
Save