-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Description
Found on 3.24.1 (12.1% of all reports as of today, 8/22/24).
There is no stack trace available (possibly due to dart-lang/sdk#56474 or similar).
The source is probably https://github.com/google/webkit_inspection_protocol.dart/blob/82f0c1c46dfdba5edf7c5fa84456233121dd69e1/lib/webkit_inspection_protocol.dart#L53, which the flutter tool reaches through a few places including
flutter/packages/flutter_tools/lib/src/isolated/resident_web_runner.dart
Lines 615 to 617 in b023fad
| final ChromeTab? chromeTab = await chrome.chromeConnection.getTab((ChromeTab chromeTab) { | |
| return !chromeTab.url.startsWith('chrome-extension'); | |
| }, retryFor: const Duration(seconds: 5)); |
and
flutter/packages/flutter_tools/lib/src/web/chrome.dart
Lines 479 to 480 in cb28dec
| final List<ChromeTab> tabs = | |
| await chromeConnection.getTabs(retryFor: retryFor); |
and
flutter/packages/flutter_tools/lib/src/web/chrome.dart
Lines 511 to 517 in cb28dec
| try { | |
| tab = await chromeConnection.getTab( | |
| (_) => true, retryFor: const Duration(seconds: 1)); | |
| } on SocketException { | |
| // Chrome is not responding to the debug protocol and probably has | |
| // already been closed. | |
| } |
.