From 4c6f6cd8a84cf452bf8d5c11d8f74baeea85d758 Mon Sep 17 00:00:00 2001 From: Collin Jackson Date: Thu, 21 May 2015 12:33:12 -0700 Subject: [PATCH] Hard code the port to 8181 --- engine/core/script/dart_controller.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/core/script/dart_controller.cc b/engine/core/script/dart_controller.cc index 083e19099bb..ba08c15dada 100644 --- a/engine/core/script/dart_controller.cc +++ b/engine/core/script/dart_controller.cc @@ -258,7 +258,7 @@ static Dart_Isolate IsolateCreateCallback(const char* script_uri, // for debugging or general Observatory interaction. EnsureHandleWatcherStarted(); std::string ip = "127.0.0.1"; - const intptr_t port = 0; // Automatic port assignment. + const intptr_t port = 8181; const bool service_isolate_booted = DartServiceIsolate::Startup(ip, port, LibraryTagHandler, error); CHECK(service_isolate_booted) << error;