Skip to content

Commit fcc9bd6

Browse files
squitoHyukjinKwon
authored andcommitted
[SPARK-25205][CORE] Fix typo in spark.network.crypto.keyFactoryIterations
Closes #22195 from squito/SPARK-25205. Authored-by: Imran Rashid <[email protected]> Signed-off-by: hyukjinkwon <[email protected]> (cherry picked from commit 0ce09ec) Signed-off-by: hyukjinkwon <[email protected]>
1 parent 9cb9d72 commit fcc9bd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/network-common/src/main/java/org/apache/spark/network/util/TransportConf.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ public String keyFactoryAlgorithm() {
209209
* (128 bits by default), which is not generally the case with user passwords.
210210
*/
211211
public int keyFactoryIterations() {
212-
return conf.getInt("spark.networy.crypto.keyFactoryIterations", 1024);
212+
return conf.getInt("spark.network.crypto.keyFactoryIterations", 1024);
213213
}
214214

215215
/**

0 commit comments

Comments
 (0)