Skip to content

Commit

Permalink
Fixes 1081 (hazelcast#1087)
Browse files Browse the repository at this point in the history
* Fixes 1081

Fixed incorrect configuration tag for MissingCpMemberAutoRemovalSeconds.

* Corrected default values
  • Loading branch information
Serdaro authored Apr 18, 2024
1 parent b6019fb commit d96702a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/modules/cp-subsystem/pages/configuration.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ heartbeat is received during this duration.
Must be greater than `session-heartbeat-interval-seconds`, and smaller than or
equal to `missing-cp-member-auto-removal-seconds`.

|300
|60
|
[tabs]
====
Expand Down Expand Up @@ -399,8 +399,8 @@ XML::
----
<hazelcast>
<cp-subsystem>
<session-time-to-live-seconds>14400
</session-time-to-live-seconds>
<missing-cp-member-auto-removal-seconds>14400
</missing-cp-member-auto-removal-seconds>
</cp-subsystem>
</hazelcast>
----
Expand All @@ -412,7 +412,7 @@ YAML::
----
hazelcast:
cp-subsystem:
session-time-to-live-seconds: 14400
missing-cp-member-auto-removal-seconds: 14400
----
--
Java::
Expand All @@ -423,7 +423,7 @@ Java::
Config config = new Config();
config.getCPSubsystemConfig()
.setSessionTimeToLiveSeconds(14400)
.setMissingCpMemberAutoRemovalSeconds(14400)
----
--
====
Expand Down

0 comments on commit d96702a

Please sign in to comment.