[Serve] use placement group by default (#16113)

This commit is contained in:
Edward Oakes 2021-05-27 13:03:29 -05:00 committed by Dmitri Gekhtman
parent f3612dc71f
commit eaf5fe55da

View file

@ -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: