Skip to content

Commit 8e3a75c

Browse files
bkonyicommit-bot@chromium.org
authored andcommitted
[ VM / Observatory ] Fixed getInstances invocation still using 'classId' instead of 'objectId' parameter.
Change-Id: I6e56b927b317e685b384949fb2f8554323f71e43 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/108686 Reviewed-by: Siva Annamalai <[email protected]> Commit-Queue: Ben Konyi <[email protected]>
1 parent c2ff2ca commit 8e3a75c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/observatory/lib/src/service/object.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1907,7 +1907,7 @@ class Isolate extends ServiceObjectOwner implements M.Isolate {
19071907

19081908
Future<ServiceObject> getInstances(Class cls, var limit) {
19091909
Map params = {
1910-
'classId': cls.id,
1910+
'objectId': cls.id,
19111911
'limit': limit.toString(),
19121912
};
19131913
return invokeRpc('getInstances', params);

0 commit comments

Comments
 (0)