Replies: 4 comments 2 replies
-
I, as well as others, have opened an issue about this. Here is my particular investigation: I am working on a monitor app that will detect this and restart the thread(s) until there is a built-in solution. |
Beta Was this translation helpful? Give feedback.
-
Okay, so here is my code that I used to make it auto restart: Just place this inside of your mine_eth.bat at the end and it auto restarts again. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Maybe this is a work around
echo off
:loop
start yourtarget.exe ...
timeout /t 1200 >null
taskkill /f /im yourtarget.exe >nul
goto loop
On Jan 27, 2021, at 3:06 PM, Steve Presley <[email protected]> wrote:
Sorry, not sure why unless your BAT file is different.
Ah, your copy/paste is showing now.
So, the problem is that when the miner goes to 0 MH/s, it never exits, it just loops forever, so just putting "call mine_eth.bat" at the end of the batch file will never get triggered.
I see what you're saying to have it auto-restart, that's the equivalent of:
:loop
lolminer.exe (plus your arguments)
goto loop
The problem we are having is that the temp shutdown/start doesn't work once it goes to 0 MH/s, so we need something external to monitor either the log file or the API port, detect the 0 MH/s and terminate the process that is still running.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FLolliedieb%2FlolMiner-releases%2Fdiscussions%2F166%23discussioncomment-316160&data=04%7C01%7C%7C6f5a3fdfd38a40524d9f08d8c318355d%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637473856021680498%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=51%2FDeGl6nWo68%2BMYd9N8TcsH3JIO%2FIYhzxXj3AOzSMk%3D&reserved=0>, or unsubscribe<https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FASTW5HATVZ273MUELQ5LC7TS4CMABANCNFSM4WNRSHUA&data=04%7C01%7C%7C6f5a3fdfd38a40524d9f08d8c318355d%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637473856021680498%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=EnxM9nazIcE4guPw8Y%2FeMWmxX290Xu0aEm4umPPyjyw%3D&reserved=0>.
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
All reactions