Author: tomwhite
Date: Mon Feb 9 17:02:03 2009
New Revision: 742622
URL: http://svn.apache.org/viewvc?rev=742622&view=rev
Log:
HADOOP-5122. Fix format of fs.default.name value in libhdfs test conf.
Contributed by Craig Macdonald.
Modified:
hadoop/core/trunk/CHANGES.txt
hadoop/core/trunk/src/c++/libhdfs/tests/conf/core-site.xml
Modified: hadoop/core/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/core/trunk/CHANGES.txt?rev=742622&r1=742621&r2=742622&view=diff
==============================================================================
--- hadoop/core/trunk/CHANGES.txt (original)
+++ hadoop/core/trunk/CHANGES.txt Mon Feb 9 17:02:03 2009
@@ -77,6 +77,9 @@
HADOOP-4930. Implement a Linux native executable that can be used to
launch tasks as users. (Sreekanth Ramakrishnan via yhemanth)
+ HADOOP-5122. Fix format of fs.default.name value in libhdfs test conf.
+ (Craig Macdonald via tomwhite)
+
OPTIMIZATIONS
BUG FIXES
Modified: hadoop/core/trunk/src/c++/libhdfs/tests/conf/core-site.xml
URL:
http://svn.apache.org/viewvc/hadoop/core/trunk/src/c%2B%2B/libhdfs/tests/conf/core-site.xml?rev=742622&r1=742621&r2=742622&view=diff
==============================================================================
--- hadoop/core/trunk/src/c++/libhdfs/tests/conf/core-site.xml (original)
+++ hadoop/core/trunk/src/c++/libhdfs/tests/conf/core-site.xml Mon Feb 9
17:02:03 2009
@@ -16,9 +16,12 @@
<property>
<name>fs.default.name</name>
- <value>localhost:23000</value>
- <description>The name of the default file system. Either the
- literal string "local" or a host:port for DFS.</description>
+ <value>hdfs://localhost:23000/</value>
+ <description>The name of the default file system. A URI whose
+ scheme and authority determine the FileSystem implementation. The
+ uri's scheme determines the config property (fs.SCHEME.impl) naming
+ the FileSystem implementation class. The uri's authority is used to
+ determine the host, port, etc. for a filesystem.</description>
</property>
</configuration>