[infinispan-issues] [JBoss JIRA] (ISPN-9626) RocksDB documentation is not compiling because of property are configured wrong

Diego Lovison (Jira) issues at jboss.org
Mon Oct 22 10:15:00 EDT 2018


     [ https://issues.jboss.org/browse/ISPN-9626?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Diego Lovison updated ISPN-9626:
--------------------------------
    Status: Open  (was: New)


> RocksDB documentation is not compiling because of property are configured wrong
> -------------------------------------------------------------------------------
>
>                 Key: ISPN-9626
>                 URL: https://issues.jboss.org/browse/ISPN-9626
>             Project: Infinispan
>          Issue Type: Bug
>            Reporter: Diego Lovison
>            Priority: Minor
>
> {code:java}
> Properties props = new Properties();
> props.addProperty("database.max_background_compactions", "2");
> props.addProperty("data.write_buffer_size", "512MB");
> {code}
> should be
> {code:java}
> Properties props = new Properties();
> props.put("database.max_background_compactions", "2");
> props.put("data.write_buffer_size", "512MB");
> {code}
> -----
> {code:xml}
> <property name="database.max_background_compactions" value="2"/>
> <property name="data.write_buffer_size" value="512MB"/>
> {code}
> should be
> {code:xml}
> <property name="database.max_background_compactions">2</property>
> <property name="data.write_buffer_size">512MB</property>
> {code}



--
This message was sent by Atlassian Jira
(v7.12.1#712002)


More information about the infinispan-issues mailing list