Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KuilongCui committed Dec 16, 2024
1 parent 51ace87 commit 347378f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion llumnix/config/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
# RAY CONFIGURATION
# -----------------------------------------------------------------------------
# If True, launch Ray cluster in API server
_C.SERVER.LAUNCH_RAY_CLUSTER = True
_C.SERVER.LAUNCH_RAY_CLUSTER = False
# Port number for the Ray cluster
_C.SERVER.RAY_CLUSTER_PORT = 6379

Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from llumnix.utils import random_uuid

def pytest_sessionstart(session):
subprocess.run(["ray", "stop",], check=False, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
subprocess.run(["ray", "start", "--head", "--disable-usage-stats", "--port=6379"], check=False,
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)

Expand Down

0 comments on commit 347378f

Please sign in to comment.