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 ece76a6 commit 6835dd7Copy full SHA for 6835dd7
tests/serve/test_dynamo_serve.py
@@ -276,10 +276,8 @@ def __init__(
276
277
# Handle multimodal deployments differently
278
if "multimodal" in graph.directory:
279
- # Set DYNAMO_PORT environment variable for multimodal
280
- env = os.environ.copy()
281
- env["DYNAMO_PORT"] = str(port)
282
- # Don't add health check on port since multimodal uses DYNAMO_PORT
+ # port is currently required to be 8000
+ assert port == 8000
283
else:
284
# Regular LLM deployments
285
command.extend(["--Frontend.port", str(port)])
0 commit comments