Skip to content

Commit

Permalink
Merge pull request #722 from the-virtual-brain/EBR-51
Browse files Browse the repository at this point in the history
EBR-51 Fix startup of tvb web
  • Loading branch information
liadomide authored Nov 15, 2024
2 parents 493328c + d2f74eb commit c5d15df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def _restart_services(self, should_reset):
proc_params = [python_path, '-m', 'tvb_bin.app', 'start', TvbProfile.CURRENT_PROFILE_NAME]
if should_reset:
proc_params.append('-reset')
subprocess.Popen(proc_params, shell=False)
subprocess.Popen(proc_params, shell=False).communicate()
except ImportError:
proc_params = [python_path, '-m', 'tvb.interfaces.web.run', TvbProfile.CURRENT_PROFILE_NAME, "tvb.config"]
if should_reset:
Expand Down

0 comments on commit c5d15df

Please sign in to comment.