| Index: runtime/lib/isolate_patch.dart
|
| diff --git a/runtime/lib/isolate_patch.dart b/runtime/lib/isolate_patch.dart
|
| index 867a031e020ffd31fbad37b9617d02bbb93ba05f..dec505867bf7ae5acf7042aeb096c1ef17d30f23 100644
|
| --- a/runtime/lib/isolate_patch.dart
|
| +++ b/runtime/lib/isolate_patch.dart
|
| @@ -213,7 +213,7 @@ patch class Isolate {
|
| Completer completer = new Completer<Isolate>.sync();
|
| try {
|
| // The VM will invoke [_startIsolate] and not `main`.
|
| - SendPort controlPort = _spawnUri(uri.path);
|
| + SendPort controlPort = _spawnUri(uri.toString());
|
| RawReceivePort readyPort = new RawReceivePort();
|
| controlPort.send([readyPort.sendPort, args, message]);
|
| readyPort.handler = (readyMessage) {
|
|
|