File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -1033,6 +1033,7 @@ class UpdateMachine {
1033
1033
details: localizations.errorConnectingToServerDetails (
1034
1034
serverUrl, e.toString ()));
1035
1035
await (backoffMachine ?? = BackoffMachine ()).wait ();
1036
+ if (_disposed) return ;
1036
1037
assert (debugLog ('… Backoff wait complete, retrying poll.' ));
1037
1038
continue ;
1038
1039
@@ -1048,6 +1049,7 @@ class UpdateMachine {
1048
1049
serverUrl, e.toString ()));
1049
1050
}
1050
1051
await (backoffMachine ?? = BackoffMachine ()).wait ();
1052
+ if (_disposed) return ;
1051
1053
assert (debugLog ('… Backoff wait complete, retrying poll.' ));
1052
1054
continue ;
1053
1055
@@ -1060,6 +1062,7 @@ class UpdateMachine {
1060
1062
details: localizations.errorConnectingToServerDetails (
1061
1063
serverUrl, e.toString ()));
1062
1064
await (backoffMachine ?? = BackoffMachine ()).wait ();
1065
+ if (_disposed) return ;
1063
1066
assert (debugLog ('… Backoff wait complete, retrying poll.' ));
1064
1067
continue ;
1065
1068
}
You can’t perform that action at this time.
0 commit comments