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

Unified Diff: sdk/lib/_internal/pub/lib/src/command/serve.dart

Issue 24429005: Revert revision 27860 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 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
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/test/serve/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/command/serve.dart
===================================================================
--- sdk/lib/_internal/pub/lib/src/command/serve.dart (revision 27864)
+++ sdk/lib/_internal/pub/lib/src/command/serve.dart (working copy)
@@ -27,17 +27,9 @@
PubPackageProvider _provider;
- String get hostname => commandOptions['hostname'];
-
ServeCommand() {
commandParser.addOption('port', defaultsTo: '8080',
help: 'The port to listen on.');
-
- // A hidden option for the tests to work around a bug in some of the OS X
- // bots where "localhost" very rarely resolves to the IPv4 loopback address
- // instead of IPv6 (or vice versa). The tests will always set this to
- // 127.0.0.1.
- commandParser.addOption('hostname', defaultsTo: 'localhost', hide: true);
}
Future onRun() {
@@ -52,7 +44,7 @@
return ensureLockFileIsUpToDate()
.then((_) => entrypoint.loadPackageGraph())
- .then((graph) => barback.createServer(hostname, port, graph))
+ .then((graph) => barback.createServer("localhost", port, graph))
.then((server) {
/// This completer is used to keep pub running (by not completing) and
/// to pipe fatal errors to pub's top-level error-handling machinery.
@@ -93,7 +85,7 @@
});
log.message("Serving ${entrypoint.root.name} "
- "on http://$hostname:${server.port}");
+ "on http://localhost:${server.port}");
return completer.future;
});
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/test/serve/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698