File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,9 @@ Trunk (unreleased changes)
8686 HADOOP-6414. Add command line help for -expunge command.
8787 (Ravi Phulari via tomwhite)
8888
89+ HADOOP-6391. Classpath should not be part of command line arguments.
90+ (Cristian Ivascu via tomwhite)
91+
8992Release 0.21.0 - Unreleased
9093
9194 INCOMPATIBLE CHANGES
Original file line number Diff line number Diff line change @@ -112,7 +112,8 @@ case $COMMAND in
112112 if $cygwin ; then
113113 CLASSPATH=` cygpath -p -w " $CLASSPATH " `
114114 fi
115- exec " $JAVA " $JAVA_HEAP_MAX $HADOOP_OPTS -classpath " $CLASSPATH " $CLASS " $@ "
115+ export CLASSPATH=$CLASSPATH
116+ exec " $JAVA " $JAVA_HEAP_MAX $HADOOP_OPTS $CLASS " $@ "
116117 ;;
117118
118119esac
Original file line number Diff line number Diff line change 106106if $cygwin ; then
107107 CLASSPATH=` cygpath -p -w " $CLASSPATH " `
108108fi
109-
110- exec " $JAVA " $JAVA_HEAP_MAX $HADOOP_OPTS -classpath " $CLASSPATH " $CLASS " $@ "
109+ export CLASSPATH= $CLASSPATH
110+ exec " $JAVA " $JAVA_HEAP_MAX $HADOOP_OPTS $CLASS " $@ "
You can’t perform that action at this time.
0 commit comments