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

View File

@ -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");

View File

@ -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;

View File

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