We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e06015 commit f4ec571Copy full SHA for f4ec571
app/lib/task/loops/delete_instances.dart
@@ -69,13 +69,15 @@ Future<DeleteInstancesState> scanAndDeleteInstances(
69
70
deletionInProgress[instance.instanceName] = clock.now();
71
72
- futures.add(Future.microtask(() async {
73
- try {
74
- await cloudCompute.delete(instance.zone, instance.instanceName);
75
- } catch (e, st) {
76
- _log.severe('Failed to delete $instance', e, st);
77
- }
78
- }));
+ futures.add(
+ Future.microtask(() async {
+ try {
+ await cloudCompute.delete(instance.zone, instance.instanceName);
+ } catch (e, st) {
+ _log.severe('Failed to delete $instance', e, st);
+ }
79
+ }),
80
+ );
81
}
82
83
await Future.wait(futures);
0 commit comments