Skip to content

Commit 6835dd7

Browse files
authored
fix: updating test to not set port (#1823)
1 parent ece76a6 commit 6835dd7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/serve/test_dynamo_serve.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,10 +276,8 @@ def __init__(
276276

277277
# Handle multimodal deployments differently
278278
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
279+
# port is currently required to be 8000
280+
assert port == 8000
283281
else:
284282
# Regular LLM deployments
285283
command.extend(["--Frontend.port", str(port)])

0 commit comments

Comments
 (0)