fix(backend): Use Pyro for RPC by default (#9528)

- Follow-up to #9508 

HTTP-based RPC has not been fully tested and should be disabled by
default.

### Changes 🏗️

- Disable HTTP-based RPC and use Pyro by default
This commit is contained in:
Reinier van der Leer
2025-02-26 15:26:09 +01:00
committed by GitHub
parent af8ea93260
commit 5f5d30a17a

View File

@@ -66,7 +66,7 @@ class Config(UpdateTrackingModel["Config"], BaseSettings):
description="Maximum number of workers to use for node execution within a single graph.",
)
use_http_based_rpc: bool = Field(
default=True,
default=False,
description="Whether to use HTTP-based RPC for communication between services.",
)
pyro_host: str = Field(