mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-08-07 22:22:36 -04:00
adjust test to choose reliable routes
This commit is contained in:
parent
ee1472f3ae
commit
59074368a5
1 changed files with 8 additions and 2 deletions
|
@ -165,7 +165,10 @@ async def test_routing_context_app_message_loopback_big_packets():
|
||||||
)
|
)
|
||||||
async with rc:
|
async with rc:
|
||||||
# make a new local private route
|
# make a new local private route
|
||||||
prl, blob = await api.new_private_route()
|
prl, blob = await api.new_custom_private_route(
|
||||||
|
[veilid.CryptoKind.CRYPTO_KIND_VLD0],
|
||||||
|
veilid.Stability.RELIABLE,
|
||||||
|
veilid.Sequencing.ENSURE_ORDERED)
|
||||||
|
|
||||||
# import it as a remote route as well so we can send to it
|
# import it as a remote route as well so we can send to it
|
||||||
prr = await api.import_remote_private_route(blob)
|
prr = await api.import_remote_private_route(blob)
|
||||||
|
@ -227,7 +230,10 @@ async def test_routing_context_app_call_loopback_big_packets():
|
||||||
)
|
)
|
||||||
async with rc:
|
async with rc:
|
||||||
# make a new local private route
|
# make a new local private route
|
||||||
prl, blob = await api.new_private_route()
|
prl, blob = await api.new_custom_private_route(
|
||||||
|
[veilid.CryptoKind.CRYPTO_KIND_VLD0],
|
||||||
|
veilid.Stability.RELIABLE,
|
||||||
|
veilid.Sequencing.ENSURE_ORDERED)
|
||||||
|
|
||||||
# import it as a remote route as well so we can send to it
|
# import it as a remote route as well so we can send to it
|
||||||
prr = await api.import_remote_private_route(blob)
|
prr = await api.import_remote_private_route(blob)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue