Commit 0a549880e855061f61c717bbb5fe83873a75d604

Con Kolivas 2014-06-10T12:20:32

Sleep before retrying in the test pool thread after a pool has died

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/cgminer.c b/cgminer.c
index 9989f4e..dffd678 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -8638,6 +8638,7 @@ retry:
 		switch_pools(NULL);
 	} else {
 		pool_died(pool);
+		sleep(5);
 		goto retry;
 	}