Skip to content

Commit add6b69

Browse files
committed
Fixed typos
1 parent 8b71125 commit add6b69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jgroups/protocols/kubernetes/KUBE_PING.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public class KUBE_PING extends Discovery {
108108
" 'old' and 'new' during that process", systemProperty="KUBERNETES_SPLIT_CLUSTERS_DURING_ROLLING_UPDATE")
109109
protected boolean split_clusters_during_rolling_update;
110110

111-
@Property(description="Introduces similar behaviour to Kubernetes Services (using DNS) with publishNotReadyAddresses set to true." +
111+
@Property(description="Introduces similar behaviour to Kubernetes Services (using DNS) with publishNotReadyAddresses set to true. " +
112112
"By default it's true", systemProperty="KUBERNETES_USE_NOT_READY_ADDRESSES")
113113
protected boolean useNotReadyAddresses = true;
114114

@@ -246,7 +246,7 @@ public void findMembers(List<Address> members, boolean initial_discovery, Respon
246246
if(physical_addr != null) {
247247
String senderIp = ((IpAddress)physical_addr).getIpAddress().getHostAddress();
248248
// Please note we search for sender parent group through all pods, ever not ready. It's because JGroup discovery is performed
249-
// before Wildfly can respond to http readiness probe.
249+
// before WildFly can respond to http readiness probe.
250250
hosts.stream()
251251
.filter(p -> p.getPodGroup() == null)
252252
.forEach(p -> log.warn("Pod %s doesn't have group assigned. Impossible to reliably determine pod group during Rolling Update."));

0 commit comments

Comments
 (0)