From b9da2c1d2efdedb14758727b2b151f23f87ca7e2 Mon Sep 17 00:00:00 2001 From: Ben Konyi Date: Wed, 13 May 2020 23:34:57 +0000 Subject: [PATCH] [ VM / DartDev ] Default to port 8181 for DDS Change-Id: I5356e962895add05663752e3f062181ded669dd0 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/147922 Reviewed-by: Ryan Macnak --- pkg/dartdev/lib/src/commands/run.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/dartdev/lib/src/commands/run.dart b/pkg/dartdev/lib/src/commands/run.dart index 4a558f5a4d7..c041ac066dd 100644 --- a/pkg/dartdev/lib/src/commands/run.dart +++ b/pkg/dartdev/lib/src/commands/run.dart @@ -254,7 +254,7 @@ class _DebuggingSession { Uri _bindAddress = Uri.http('127.0.0.1', ''); DartDevelopmentService _dds; bool _observe = false; - int _port = 0; + int _port = 8181; Process _process; Uri _serviceInfoUri; Future _stderrDone;