We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01b3be5 commit 6f1a82eCopy full SHA for 6f1a82e
suzieq/gui/sq_gui.py
@@ -53,6 +53,15 @@ def gui_main(*args):
53
'stlit' / 'suzieq-gui.py'
54
thisprog = str(thisprog)
55
56
+ if userargs.port == '3000':
57
+ # due to a streamlit issue, starting a server on port 3000 will cause
58
+ # the SuzieQ gui to show an empty page
59
+ # Issue: https://github.com/netenglabs/suzieq/issues/847
60
+ print('Port 3000 is not allowed. Please choose a different port.\n\n'
61
+ 'For more details, check '
62
+ 'https://github.com/netenglabs/suzieq/issues/847')
63
+ return
64
+
65
# validate the config file before starting the gui
66
load_sq_config(config_file=userargs.config)
67
0 commit comments