File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
core/src/main/scala/org/apache/spark Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ private[spark] case class SSLOptions(
128128 }
129129
130130 /** Returns a string representation of this SSLOptions with all the passwords masked. */
131- override def toString : String = s " SSLOptions{enabled= $enabled, " +
131+ override def toString : String = s " SSLOptions{enabled= $enabled, port= $port , " +
132132 s " keyStore= $keyStore, keyStorePassword= ${keyStorePassword.map(_ => " xxx" )}, " +
133133 s " trustStore= $trustStore, trustStorePassword= ${trustStorePassword.map(_ => " xxx" )}, " +
134134 s " protocol= $protocol, enabledAlgorithms= $enabledAlgorithms} "
@@ -142,6 +142,7 @@ private[spark] object SSLOptions extends Logging {
142142 *
143143 * The following settings are allowed:
144144 * $ - `[ns].enabled` - `true` or `false`, to enable or disable SSL respectively
145+ * $ - `[ns].port` - the port where to bind the SSL server
145146 * $ - `[ns].keyStore` - a path to the key-store file; can be relative to the current directory
146147 * $ - `[ns].keyStorePassword` - a password to the key-store file
147148 * $ - `[ns].keyPassword` - a password to the private key
You can’t perform that action at this time.
0 commit comments