File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ def add_arguments(parser):
28
28
"--data_folder_path" , default = os .environ .get ("DATA_FOLDER_PATH" ), help = "Path to the folder where data is stored"
29
29
)
30
30
31
- parser .add_argument (
32
- "--host" , default = os .environ .get ("DEFAULT_HOST" ), help = "Host to run on"
33
- )
31
+ # parser.add_argument(
32
+ # "--host", default=os.environ.get("DEFAULT_HOST"), help="Host to run on"
33
+ # )
34
34
35
35
@staticmethod
36
36
def configure (args ):
@@ -96,10 +96,6 @@ def run_server():
96
96
97
97
_Server .add_arguments (parser )
98
98
args = parser .parse_args ()
99
- print ("COUCOU" , flush = True )
100
- if not "host" in args :
101
- print (f"Defaulting to { os .environ .get ('DEFAULT_HOST' )} " , flush = True )
102
- args .host = os .environ .get ("DEFAULT_HOST" )
103
99
if not "port" in args or args .port == 8080 :
104
100
args .port = os .environ .get ("DEFAULT_PORT" )
105
101
if "data_folder_path" in args :
You can’t perform that action at this time.
0 commit comments