Skip to content

Commit a3fba34

Browse files
authored
long rpc timeout (#569)
Former-commit-id: 6411135
1 parent c673252 commit a3fba34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dimos/protocol/rpc/spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def call(
4545

4646
# we expect to crash if we don't get a return value after 10 seconds
4747
# but callers can override this timeout for extra long functions
48-
def call_sync(self, name: str, arguments: Args, rpc_timeout: Optional[float] = 10.0) -> Any:
48+
def call_sync(self, name: str, arguments: Args, rpc_timeout: Optional[float] = 120.0) -> Any:
4949
event = threading.Event()
5050

5151
def receive_value(val):

0 commit comments

Comments
 (0)