| Index: runtime/bin/vmservice/running_isolates.dart
|
| diff --git a/runtime/bin/vmservice/running_isolates.dart b/runtime/bin/vmservice/running_isolates.dart
|
| index 36a0c48405ce21ae313a7df5b827e57a12d1086a..db93d089c5d0354599a758d067fa0d1e03bad7ba 100644
|
| --- a/runtime/bin/vmservice/running_isolates.dart
|
| +++ b/runtime/bin/vmservice/running_isolates.dart
|
| @@ -29,8 +29,9 @@ class RunningIsolates implements MessageRouter {
|
| var result = {};
|
| isolates.forEach((portId, runningIsolate) {
|
| members.add({
|
| - 'id': portId,
|
| - 'name': runningIsolate.name
|
| + 'type': 'Isolate',
|
| + 'id': 'isolates/$portId',
|
| + 'name': runningIsolate.name,
|
| });
|
| });
|
| result['type'] = 'IsolateList';
|
|
|