mirror of
https://github.com/apache/superset.git
synced 2026-04-20 08:34:37 +00:00
fix addr_str format bug (#6551)
This commit is contained in:
committed by
Maxime Beauchemin
parent
e2b9625d84
commit
b06941945c
@@ -112,7 +112,7 @@ def runserver(debug, console_log, use_reloader, address, port, timeout, workers,
|
||||
logging.info(
|
||||
"The Gunicorn 'superset runserver' command is deprecated. Please "
|
||||
"use the 'gunicorn' command instead.")
|
||||
addr_str = ' unix:{socket} ' if socket else' {address}:{port} '
|
||||
addr_str = f' unix:{socket} ' if socket else f' {address}:{port} '
|
||||
cmd = (
|
||||
'gunicorn '
|
||||
f'-w {workers} '
|
||||
|
||||
Reference in New Issue
Block a user