Frank vissing created ZEPPELIN-2840:
---------------------------------------
Summary: combined git and azure storage classes is wrong in
documentation
Key: ZEPPELIN-2840
URL: https://issues.apache.org/jira/browse/ZEPPELIN-2840
Project: Zeppelin
Issue Type: Improvement
Components: documentation
Affects Versions: 0.7.2, 0.7.1, 0.7.0, 0.6.2, 0.6.1, 0.6.0
Reporter: Frank vissing
Priority: Trivial
on
https://zeppelin.apache.org/docs/0.7.2/storage/storage.html#notebook-storage-in-azure
ther is a missing org. on org.apache.zeppelin.notebook.repo.AzureNotebookRepo
the code
{code:xml}
<property>
<name>zeppelin.notebook.storage</name>
<value>org.apache.zeppelin.notebook.repo.GitNotebookRepo,
apache.zeppelin.notebook.repo.AzureNotebookRepo</value>
<description>notebook persistence layer implementation</description>
</property>
{code}
should be
{code:xml}
<property>
<name>zeppelin.notebook.storage</name>
<value>org.apache.zeppelin.notebook.repo.GitNotebookRepo,
org.apache.zeppelin.notebook.repo.AzureNotebookRepo</value>
<description>notebook persistence layer implementation</description>
</property>
{code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)