Skip to content

Commit

Permalink
[SPARK-19660][SQL] Replace the deprecated property name fs.default.na…
Browse files Browse the repository at this point in the history
…me to fs.defaultFS that newly introduced

## What changes were proposed in this pull request?

Replace the deprecated property name `fs.default.name` to `fs.defaultFS` that newly introduced.

## How was this patch tested?

Existing tests

Author: Yuming Wang <[email protected]>

Closes apache#17856 from wangyum/SPARK-19660.
  • Loading branch information
wangyum authored and srowen committed May 5, 2017
1 parent 4411ac7 commit 37cdf07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ class StateStoreSuite extends SparkFunSuite with BeforeAndAfter with PrivateMeth
test("SPARK-19677: Committing a delta file atop an existing one should not fail on HDFS") {
val conf = new Configuration()
conf.set("fs.fake.impl", classOf[RenameLikeHDFSFileSystem].getName)
conf.set("fs.default.name", "fake:///")
conf.set("fs.defaultFS", "fake:///")

val provider = newStoreProvider(hadoopConf = conf)
provider.getStore(0).commit()
Expand Down

0 comments on commit 37cdf07

Please sign in to comment.