1
0
mirror of https://gitlab.com/veilid/veilid.git synced 2025-04-21 08:06:41 -04:00

update async_tools and flutter bindings

This commit is contained in:
Christien Rioux 2024-06-21 22:58:24 -04:00
parent e638c02465
commit f1bc649eb1
3 changed files with 2 additions and 5 deletions
veilid-core/src/storage_manager
veilid-flutter/packages/veilid_test

@ -686,7 +686,6 @@ impl StorageManager {
opt_watch_node,
)
.await?;
// If we did not get a valid response assume nothing changed
let Some(owvresult) = opt_owvresult else {
apibail_try_again!("did not get a valid response");

@ -163,10 +163,8 @@ class DefaultVeilidFixture implements VeilidFixture {
Future<void> tearDown() async {
assert(_fixtureMutex.isLocked, 'should not tearDown without setUp');
final cancelFut = _veilidUpdateSubscription?.cancel();
await Veilid.instance.shutdownVeilidCore();
await cancelFut;
await _veilidUpdateSubscription?.cancel();
await _updateStreamController.close();
_veilidUpdateSubscription = null;

@ -9,7 +9,7 @@ environment:
# Add regular dependencies here.
dependencies:
async_tools: ^0.1.1
async_tools: ^0.1.3
veilid:
path: ../..