mirror of
https://github.com/vale981/ray
synced 2025-03-09 12:56:46 -04:00
[Serve] use placement group by default (#16113)
This commit is contained in:
parent
f3612dc71f
commit
eaf5fe55da
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ class ReplicaState(Enum):
|
|||
|
||||
|
||||
ALL_REPLICA_STATES = list(ReplicaState)
|
||||
USE_PLACEMENT_GROUP = os.environ.get("SERVE_USE_PLACEMENT_GROUP", "0") == "1"
|
||||
USE_PLACEMENT_GROUP = os.environ.get("SERVE_USE_PLACEMENT_GROUP", "1") != "0"
|
||||
|
||||
|
||||
class ActorReplicaWrapper:
|
||||
|
|
Loading…
Add table
Reference in a new issue