Skip to content

Commit

Permalink
Merge pull request #170 from lightning-power-users/5.5.1-bug-fixes
Browse files Browse the repository at this point in the history
5.5.1 bug fixes
  • Loading branch information
PierreRochard authored Feb 6, 2019
2 parents e01ad8d + 4ef7515 commit b28a6fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions node_launcher/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import platform
from typing import Dict

NODE_LAUNCHER_RELEASE = '.'.join(map(str, (5, 5, 0)))
NODE_LAUNCHER_RELEASE = '.'.join(map(str, (5, 5, 1)))

TARGET_BITCOIN_RELEASE = 'v0.17.1'
TARGET_LND_RELEASE = 'v0.5.2-beta-rc6'
TARGET_LND_RELEASE = 'v0.5.2-beta-rc7'


class StringConstant(object):
Expand Down
5 changes: 4 additions & 1 deletion node_launcher/node_set/bitcoin.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,10 @@ def find_running_node(self) -> Optional[psutil.Process]:
except:
return None
for process in processes:
if not process.is_running() or process.status() == 'zombie':
try:
if not process.is_running() or process.status() == 'zombie':
continue
except psutil.NoSuchProcess:
continue
# noinspection PyBroadException
try:
Expand Down

0 comments on commit b28a6fc

Please sign in to comment.