mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
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:
committed by
GitHub
parent
af8ea93260
commit
5f5d30a17a
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user