mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
adjust test to choose reliable routes
This commit is contained in:
parent
ee1472f3ae
commit
59074368a5
@ -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…
Reference in New Issue
Block a user