mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-01-11 07:31:56 -06:00
update async_tools and flutter bindings
This commit is contained in:
parent
e638c02465
commit
f1bc649eb1
@ -686,7 +686,6 @@ impl StorageManager {
|
|||||||
opt_watch_node,
|
opt_watch_node,
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
// If we did not get a valid response assume nothing changed
|
// If we did not get a valid response assume nothing changed
|
||||||
let Some(owvresult) = opt_owvresult else {
|
let Some(owvresult) = opt_owvresult else {
|
||||||
apibail_try_again!("did not get a valid response");
|
apibail_try_again!("did not get a valid response");
|
||||||
|
@ -163,10 +163,8 @@ class DefaultVeilidFixture implements VeilidFixture {
|
|||||||
Future<void> tearDown() async {
|
Future<void> tearDown() async {
|
||||||
assert(_fixtureMutex.isLocked, 'should not tearDown without setUp');
|
assert(_fixtureMutex.isLocked, 'should not tearDown without setUp');
|
||||||
|
|
||||||
final cancelFut = _veilidUpdateSubscription?.cancel();
|
|
||||||
await Veilid.instance.shutdownVeilidCore();
|
await Veilid.instance.shutdownVeilidCore();
|
||||||
await cancelFut;
|
await _veilidUpdateSubscription?.cancel();
|
||||||
|
|
||||||
await _updateStreamController.close();
|
await _updateStreamController.close();
|
||||||
|
|
||||||
_veilidUpdateSubscription = null;
|
_veilidUpdateSubscription = null;
|
||||||
|
@ -9,7 +9,7 @@ environment:
|
|||||||
|
|
||||||
# Add regular dependencies here.
|
# Add regular dependencies here.
|
||||||
dependencies:
|
dependencies:
|
||||||
async_tools: ^0.1.1
|
async_tools: ^0.1.3
|
||||||
veilid:
|
veilid:
|
||||||
path: ../..
|
path: ../..
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user