You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sqoop.apache.org by bl...@apache.org on 2012/11/14 19:22:22 UTC

[1/4] git commit: SQOOP-695 Change default host on client to "localhost" (Jarek Jarcec Cecho)

Updated Branches:
  refs/heads/sqoop2 54a9ce415 -> e8869ab34


SQOOP-695 Change default host on client to "localhost"
(Jarek Jarcec Cecho)


Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/e8869ab3
Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/e8869ab3
Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/e8869ab3

Branch: refs/heads/sqoop2
Commit: e8869ab3420fa58e7e9348b081d3ffedc954b1f3
Parents: 18b5d70
Author: Bilung Lee <bl...@apache.org>
Authored: Tue Nov 13 21:08:53 2012 -0800
Committer: Bilung Lee <bl...@apache.org>
Committed: Tue Nov 13 21:08:53 2012 -0800

----------------------------------------------------------------------
 .../org/apache/sqoop/client/core/Environment.java  |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/sqoop/blob/e8869ab3/client/src/main/java/org/apache/sqoop/client/core/Environment.java
----------------------------------------------------------------------
diff --git a/client/src/main/java/org/apache/sqoop/client/core/Environment.java b/client/src/main/java/org/apache/sqoop/client/core/Environment.java
index 190af37..e0f599d 100644
--- a/client/src/main/java/org/apache/sqoop/client/core/Environment.java
+++ b/client/src/main/java/org/apache/sqoop/client/core/Environment.java
@@ -32,7 +32,7 @@ public final class Environment
 
   private static boolean verbose;
 
-  private static final String HOST_DEFAULT = "vm-sqoop2";
+  private static final String HOST_DEFAULT = "localhost";
   private static final String PORT_DEFAULT = "8080";
   private static final String WEBAPP_DEFAULT = "sqoop";
   private static final boolean VERBOSE_DEFAULT = false;