Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 729f8c8

Browse files
authored
Update regexp for Observatory/VM Service message parsing for device lab (#98935)
Should unblock flutter/flutter#98930
1 parent cd2413c commit 729f8c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/devicelab/lib/framework/runner.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Future<TaskResult> runTask(
190190
.transform<String>(const LineSplitter())
191191
.listen((String line) {
192192
if (!uri.isCompleted) {
193-
final Uri? serviceUri = parseServiceUri(line, prefix: RegExp('(Observatory|Dart VM Service) listening on '));
193+
final Uri? serviceUri = parseServiceUri(line, prefix: RegExp('(Observatory|The Dart VM service is) listening on '));
194194
if (serviceUri != null)
195195
uri.complete(serviceUri);
196196
}

0 commit comments

Comments
 (0)