From 745887cee09ad0146b166d93e011382487a2f7f1 Mon Sep 17 00:00:00 2001 From: Jacob Alexander Date: Tue, 9 Jun 2020 00:27:43 -0700 Subject: [PATCH] Typo from earlier commit (capnproto-0.8.0 update) --- examples/thread_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/thread_client.py b/examples/thread_client.py index 6e19870..5dc03c7 100755 --- a/examples/thread_client.py +++ b/examples/thread_client.py @@ -28,7 +28,7 @@ class StatusSubscriber(thread_capnp.Example.StatusSubscriber.Server): def start_status_thread(host): - client = capnp.TwoPartyClient(host, nesting_limit=64) + client = capnp.TwoPartyClient(host) cap = client.bootstrap().cast_as(thread_capnp.Example) subscriber = StatusSubscriber() @@ -37,7 +37,7 @@ def start_status_thread(host): def main(host): - client = capnp.TwoPartyClient(host, nesting_limit=64) + client = capnp.TwoPartyClient(host) cap = client.bootstrap().cast_as(thread_capnp.Example) status_thread = threading.Thread(target=start_status_thread, args=(host,))