aboutsummaryrefslogtreecommitdiff
path: root/dev/.gitignore
diff options
context:
space:
mode:
authorbomeng <bmeng@us.ibm.com>2016-03-10 11:17:35 -0800
committerMarcelo Vanzin <vanzin@cloudera.com>2016-03-10 11:17:40 -0800
commit235f4ac6fc05802a00889a3a0b39377711cbc7e3 (patch)
treeb9430e63dfe0afad34b90cbf0c7fb72c6dc7a841 /dev/.gitignore
parentd24801ad285ac3f2282fe20d1250a010673e2f96 (diff)
downloadspark-235f4ac6fc05802a00889a3a0b39377711cbc7e3.tar.gz
spark-235f4ac6fc05802a00889a3a0b39377711cbc7e3.tar.bz2
spark-235f4ac6fc05802a00889a3a0b39377711cbc7e3.zip
[SPARK-13727][CORE] SparkConf.contains does not consider deprecated keys
The contains() method does not return consistently with get() if the key is deprecated. For example, import org.apache.spark.SparkConf val conf = new SparkConf() conf.set("spark.io.compression.lz4.block.size", "12345") # display some deprecated warning message conf.get("spark.io.compression.lz4.block.size") # return 12345 conf.get("spark.io.compression.lz4.blockSize") # return 12345 conf.contains("spark.io.compression.lz4.block.size") # return true conf.contains("spark.io.compression.lz4.blockSize") # return false The fix will make the contains() and get() more consistent. I've added a test case for this. (Please explain how this patch was tested. E.g. unit tests, integration tests, manual tests) Unit tests should be sufficient. Author: bomeng <bmeng@us.ibm.com> Closes #11568 from bomeng/SPARK-13727.
Diffstat (limited to 'dev/.gitignore')
0 files changed, 0 insertions, 0 deletions