We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca073c commit cf23d0dCopy full SHA for cf23d0d
tests/router_test.py
@@ -262,6 +262,13 @@ def test_remote_configured(self):
262
size = remote.call(return_router_max_message_size)
263
self.assertEquals(size, 64*1024)
264
265
+ def test_remote_of_remote_configured(self):
266
+ router = self.klass(broker=self.broker, max_message_size=64*1024)
267
+ remote = router.local()
268
+ remote2 = router.local(via=remote)
269
+ size = remote2.call(return_router_max_message_size)
270
+ self.assertEquals(size, 64*1024)
271
+
272
def test_remote_exceeded(self):
273
# Ensure new contexts receive a router with the same value.
274
router = self.klass(broker=self.broker, max_message_size=64*1024)
0 commit comments