Skip to content

Commit

Permalink
[hotfix][config][docs] Remove leading space from descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
zentol committed Feb 16, 2018
1 parent 4500bfd commit fafd5b6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<tr>
<td><h5>high-availability.zookeeper.path.latch</h5></td>
<td style="word-wrap: break-word;">"/leaderlatch"</td>
<td> Defines the znode of the leader latch which is used to elect the leader.</td>
<td>Defines the znode of the leader latch which is used to elect the leader.</td>
</tr>
<tr>
<td><h5>high-availability.zookeeper.path.leader</h5></td>
Expand Down
2 changes: 1 addition & 1 deletion docs/_includes/generated/netty_configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<tr>
<td><h5>taskmanager.network.netty.server.backlog</h5></td>
<td style="word-wrap: break-word;">0</td>
<td> The netty server connection backlog.</td>
<td>The netty server connection backlog.</td>
</tr>
<tr>
<td><h5>taskmanager.network.netty.server.numThreads</h5></td>
Expand Down
2 changes: 1 addition & 1 deletion docs/_includes/generated/task_manager_configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
<tr>
<td><h5>taskmanager.rpc.port</h5></td>
<td style="word-wrap: break-word;">"0"</td>
<td> The task manager’s IPC port. Accepts a list of ports (“50100,50101”), ranges (“50100-50200”) or a combination of both. It is recommended to set a range of ports to avoid collisions when multiple TaskManagers are running on the same machine.</td>
<td>The task manager’s IPC port. Accepts a list of ports (“50100,50101”), ranges (“50100-50200”) or a combination of both. It is recommended to set a range of ports to avoid collisions when multiple TaskManagers are running on the same machine.</td>
</tr>
</tbody>
</table>
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public class HighAvailabilityOptions {
key("high-availability.zookeeper.path.latch")
.defaultValue("/leaderlatch")
.withDeprecatedKeys("recovery.zookeeper.path.latch")
.withDescription(" Defines the znode of the leader latch which is used to elect the leader.");
.withDescription("Defines the znode of the leader latch which is used to elect the leader.");

/** ZooKeeper root path (ZNode) for job graphs. */
public static final ConfigOption<String> HA_ZOOKEEPER_JOBGRAPHS_PATH =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public class TaskManagerOptions {
public static final ConfigOption<String> RPC_PORT =
key("taskmanager.rpc.port")
.defaultValue("0")
.withDescription(" The task manager’s IPC port. Accepts a list of ports (“50100,50101”), ranges" +
.withDescription("The task manager’s IPC port. Accepts a list of ports (“50100,50101”), ranges" +
" (“50100-50200”) or a combination of both. It is recommended to set a range of ports to avoid" +
" collisions when multiple TaskManagers are running on the same machine.");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class NettyConfig {
.key("taskmanager.network.netty.server.backlog")
.defaultValue(0) // default: 0 => Netty's default
.withDeprecatedKeys("taskmanager.net.server.backlog")
.withDescription(" The netty server connection backlog.");
.withDescription("The netty server connection backlog.");

public static final ConfigOption<Integer> CLIENT_CONNECT_TIMEOUT_SECONDS = ConfigOptions
.key("taskmanager.network.netty.client.connectTimeoutSec")
Expand Down

0 comments on commit fafd5b6

Please sign in to comment.