From 8776b84c10197790e715ee3ed8b6f2092dd0c29e Mon Sep 17 00:00:00 2001 From: low012 Date: Tue, 17 Jan 2012 20:43:19 +0100 Subject: [PATCH] *) small fix to make password change function of reconfigureYACY.sh work again --- source/net/yacy/kelondro/order/Digest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/net/yacy/kelondro/order/Digest.java b/source/net/yacy/kelondro/order/Digest.java index 0d26ee5e8..9da0afcf2 100644 --- a/source/net/yacy/kelondro/order/Digest.java +++ b/source/net/yacy/kelondro/order/Digest.java @@ -390,5 +390,8 @@ public class Digest { } System.out.println("time: " + (System.currentTimeMillis() - start) + " ms"); + + // without this this method would never end + Log.shutdown(); } }