Skip to content
Snippets Groups Projects
Commit 975643c2 authored by CodingCat's avatar CodingCat Committed by Sean Owen
Browse files

[SPARK-6118] making package name of deploy.worker.CommandUtils and...

[SPARK-6118] making package name of deploy.worker.CommandUtils and deploy.CommandUtilsSuite consistent

https://issues.apache.org/jira/browse/SPARK-6118

I found that the object CommandUtils is placed under deploy.worker package, while CommandUtilsSuite is  under deploy

Conventionally, we put the implementation and unit test class under the same package

here, to minimize the change, I move CommandUtilsSuite to worker package,

**However, CommandUtils seems to contain some general methods (though only used by worker.* classes currently**,  we may also consider to replace CommonUtils

Author: CodingCat <zhunansjtu@gmail.com>

Closes #4856 from CodingCat/SPARK-6118 and squashes the following commits:

cb93700 [CodingCat] making package name consistent
parent 0c9a8eae
No related branches found
No related tags found
No related merge requests found
......@@ -15,11 +15,10 @@
* limitations under the License.
*/
package org.apache.spark.deploy
package org.apache.spark.deploy.worker
import org.apache.spark.deploy.worker.CommandUtils
import org.apache.spark.deploy.Command
import org.apache.spark.util.Utils
import org.scalatest.{FunSuite, Matchers}
class CommandUtilsSuite extends FunSuite with Matchers {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment