Skip to content

Commit

Permalink
[fix] fixed subproccess function for long time taking rpc calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Aklix committed Sep 17, 2021
1 parent be22beb commit 19e0c66
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/python/marmarachain_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ def handle_rpc(command):
logging.info('------sending command----- \n ' + command.split(' ')[0])
try:
proc = subprocess.Popen(cmd, cwd=marmara_path, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
proc.wait()
retvalue = proc.poll()
result = ""
err_out = ""
Expand Down

0 comments on commit 19e0c66

Please sign in to comment.