This is an automated email from the ASF dual-hosted git repository.

dbarnes pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/geode-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 924d3555 GEODE-10205: Correct Java API method from getDiskStore to 
findDiskStore (#16)
924d3555 is described below

commit 924d3555c8265b8c5e2a7ad93547ba6f12f73109
Author: Max Hufnagel <[email protected]>
AuthorDate: Tue Apr 5 16:34:28 2022 -0700

    GEODE-10205: Correct Java API method from getDiskStore to findDiskStore 
(#16)
---
 docs/guide/114/managing/disk_storage/compacting_disk_stores.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/guide/114/managing/disk_storage/compacting_disk_stores.html 
b/docs/guide/114/managing/disk_storage/compacting_disk_stores.html
index 0c9c3a59..0a9f63ae 100644
--- a/docs/guide/114/managing/disk_storage/compacting_disk_stores.html
+++ b/docs/guide/114/managing/disk_storage/compacting_disk_stores.html
@@ -2708,7 +2708,7 @@ See <a 
href="/docs/guide/114/managing/disk_storage/operation_logs.html">Disk Sto
 
 <ul>
 <li><p>Compact the logs for a single online disk store through the API, with 
the <code>forceCompaction</code> method. This method first rolls the oplogs and 
then compacts them. Example:</p>
-<pre class="highlight 
plaintext"><code>myCache.getDiskStore("myDiskStore").forceCompaction();
+<pre class="highlight 
plaintext"><code>myCache.findDiskStore("myDiskStore").forceCompaction();
 </code></pre></li>
 <li><p>Using <code>gfsh</code>, compact a disk store with the <a 
href="/docs/guide/114/tools_modules/gfsh/command-pages/compact.html#topic_F113C95C076F424E9AA8AC4F1F6324CC">compact
 disk-store</a> command. Examples:</p>
 <pre class="highlight plaintext"><code>gfsh&gt;compact disk-store --name=Disk1

Reply via email to