Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1455)

Unified Diff: runtime/vm/service/running_isolates.dart

Issue 922163005: Fix HTTP support in vm-service (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/service/running_isolates.dart
diff --git a/runtime/vm/service/running_isolates.dart b/runtime/vm/service/running_isolates.dart
index 776649124ee95db18804402bdb8240dbfa6065a4..12ca0b76f91b5ce52c6e6d2786cf4e5c0bac73d7 100644
--- a/runtime/vm/service/running_isolates.dart
+++ b/runtime/vm/service/running_isolates.dart
@@ -33,7 +33,7 @@ class RunningIsolates implements MessageRouter {
return message.response;
}
isolateParam = isolateParam.substring('isolates/'.length);
- if (isolateParam == 'isolates/root') {
+ if (isolateParam == 'root') {
isolateId = _rootPortId;
} else {
try {

Powered by Google App Engine
This is Rietveld 408576698