update property name

This commit is contained in:
Renjith Kamath 2016-03-21 12:02:46 +05:30
parent 07b38f1154
commit d3ac141d26
3 changed files with 3 additions and 3 deletions

View file

@ -220,7 +220,7 @@
</property>
<property>
<name>zeppelin.websocket.maxTextMessageSize</name>
<name>zeppelin.websocket.max.text.message.size</name>
<value>1024000</value>
<description>Size in characters of the maximum text message to be received by websocket. Defaults to 1024000</description>
</property>

View file

@ -227,7 +227,7 @@ You can configure Zeppelin with both **environment variables** in `conf/zeppelin
</tr>
<tr>
<td>ZEPPELIN_WEBSOCKET_MAX_TEXT_MESSAGE_SIZE</td>
<td>zeppelin.websocket.maxTextMessageSize</td>
<td>zeppelin.websocket.max.text.message.size</td>
<td>1024000</td>
<td>Size in characters of the maximum text message to be received by websocket.</td>
</tr>

View file

@ -494,7 +494,7 @@ public class ZeppelinConfiguration extends XMLConfiguration {
// i.e. http://localhost:8080
ZEPPELIN_ALLOWED_ORIGINS("zeppelin.server.allowed.origins", "*"),
ZEPPELIN_ANONYMOUS_ALLOWED("zeppelin.anonymous.allowed", true),
ZEPPELIN_WEBSOCKET_MAX_TEXT_MESSAGE_SIZE("zeppelin.websocket.maxTextMessageSize", "1024000");
ZEPPELIN_WEBSOCKET_MAX_TEXT_MESSAGE_SIZE("zeppelin.websocket.max.text.message.size", "1024000");
private String varName;
@SuppressWarnings("rawtypes")