mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
update property name
This commit is contained in:
parent
07b38f1154
commit
d3ac141d26
3 changed files with 3 additions and 3 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in a new issue