Router: Lengthen shutdown spinner life

This commit is contained in:
zzz
2012-08-31 13:56:24 +00:00
parent 7d4a6e74d2
commit 4fdff1bf13

View File

@ -17,7 +17,7 @@ public class Spinner extends Thread {
@Override
public void run() {
try {
sleep(60*1000);
sleep(5*60*1000);
} catch (InterruptedException ie) {}
}
}