Skip to content

Commit d7a6769

Browse files
committed
Add --debug flag option in octo start command
1 parent bfb24c9 commit d7a6769

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

octo/github_handle/mindsdb_octo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def start_local(self, debug=False):
2020
Connect to local installation of mindsdb
2121
"""
2222
# Run shell command to start the local mindsdb server
23-
if debug:
23+
if not debug:
2424
command = "nohup python -m mindsdb > /dev/null 2>&1 &"
2525
else:
2626
command = "nohup python -m mindsdb > mindsdb.log 2>&1 &"

0 commit comments

Comments
 (0)