Skip to content

Commit b4d096d

Browse files
jerryshaorxin
authored andcommitted
[BUILD][MINOR] Fix SBT build error with network-yarn module
## What changes were proposed in this pull request? ``` error] Expected ID character [error] Not a valid command: common (similar: completions) [error] Expected project ID [error] Expected configuration [error] Expected ':' (if selecting a configuration) [error] Expected key [error] Not a valid key: common (similar: commands) [error] common/network-yarn/test ``` `common/network-yarn` is not a valid sbt project, we should change to `network-yarn`. ## How was this patch tested? Locally run the the unit-test. CC rxin , we should either change here, or change the sbt project name. Author: jerryshao <[email protected]> Closes #11456 from jerryshao/build-fix.
1 parent 9495c40 commit b4d096d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/sparktestsupport/modules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ def __hash__(self):
477477
],
478478
sbt_test_goals=[
479479
"yarn/test",
480-
"common/network-yarn/test",
480+
"network-yarn/test",
481481
],
482482
test_tags=[
483483
"org.apache.spark.tags.ExtendedYarnTest"

0 commit comments

Comments
 (0)