Skip to content

Commit ba9de7c

Browse files
authored
Return RPCError.kMethodNotFound for streamCpuSamplesWithUserTag (#1889)
1 parent 5c79703 commit ba9de7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dwds/lib/src/services/chrome_proxy_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,7 @@ ${globalLoadStrategy.loadModuleSnippet}("dart_sdk").developer.invokeExtension(
11311131

11321132
@override
11331133
Future<Success> streamCpuSamplesWithUserTag(List<String> userTags) =>
1134-
throw UnimplementedError();
1134+
_rpcNotSupportedFuture('streamCpuSamplesWithUserTag');
11351135

11361136
/// Prevent DWDS from blocking Dart SDK rolls if changes in package:vm_service
11371137
/// are unimplemented in DWDS.

dwds/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies:
1515
built_value: ^8.3.0
1616
collection: ^1.15.0
1717
crypto: ^3.0.2
18-
dds: ^2.2.5
18+
dds: ^2.7.1
1919
file: ^6.1.3
2020
http: ^0.13.4
2121
http_multi_server: ^3.2.0

0 commit comments

Comments
 (0)