You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by db...@apache.org on 2020/08/05 00:06:46 UTC

[geode] branch develop updated: GEODE-8401: User Guide - incorrect method name on "forced disconnect" page (#5423)

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new a13d72c  GEODE-8401: User Guide - incorrect method name on "forced disconnect" page (#5423)
a13d72c is described below

commit a13d72c5cb1541991564ea00bda09e5c1f9d9c8d
Author: Dave Barnes <db...@apache.org>
AuthorDate: Tue Aug 4 17:06:02 2020 -0700

    GEODE-8401: User Guide - incorrect method name on "forced disconnect" page (#5423)
---
 geode-docs/managing/member-reconnect.html.md.erb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-docs/managing/member-reconnect.html.md.erb b/geode-docs/managing/member-reconnect.html.md.erb
index 2f45407..485baa4 100644
--- a/geode-docs/managing/member-reconnect.html.md.erb
+++ b/geode-docs/managing/member-reconnect.html.md.erb
@@ -72,7 +72,7 @@ The `DistributedSystem` and `Cache` API provide several methods you can use to t
 -   `DistributedSystem.getReconnectedSystem()` returns the reconnected DistributedSystem.
 -   `DistributedSystem.stopReconnecting()` stops the reconnection process and ensures that the DistributedSystem stays in a disconnected state.
 -   `Cache.isReconnecting()` returns true if the cache is attempting to reconnect to a cluster.
--   `Cache.waitForReconnect(long, TimeUnit)` waits for a period of time, and then returns a boolean value to indicate whether the DistributedSystem has reconnected. Use a value of -1 seconds to wait indefinitely until the reconnect completes or the cache shuts down. Use a value of 0 seconds as a quick probe to determine if the member has reconnected.
+-   `Cache.waitUntilReconnected(long, TimeUnit)` waits for a period of time, and then returns a boolean value to indicate whether the DistributedSystem has reconnected. Use a value of -1 seconds to wait indefinitely until the reconnect completes or the cache shuts down. Use a value of 0 seconds as a quick probe to determine if the member has reconnected.
 -   `Cache.getReconnectedCache()` returns the reconnected Cache.
 -   `Cache.stopReconnecting()` stops the reconnection process and ensures that the DistributedSystem stays in a disconnected state.