This is an automated email from the ASF dual-hosted git repository.
alexpl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/master by this push:
new e281ab3fefc IGNITE-27625 Remove unnecessary dot in system property
description (#12650)
e281ab3fefc is described below
commit e281ab3fefc145739b27f99e85d877d09bfe0068
Author: Dmitry Werner <[email protected]>
AuthorDate: Wed Jan 21 19:50:53 2026 +0500
IGNITE-27625 Remove unnecessary dot in system property description (#12650)
---
.../core/src/main/java/org/apache/ignite/IgniteSystemProperties.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/core/src/main/java/org/apache/ignite/IgniteSystemProperties.java
b/modules/core/src/main/java/org/apache/ignite/IgniteSystemProperties.java
index e77946f9cda..8163155c39a 100644
--- a/modules/core/src/main/java/org/apache/ignite/IgniteSystemProperties.java
+++ b/modules/core/src/main/java/org/apache/ignite/IgniteSystemProperties.java
@@ -1836,7 +1836,7 @@ public final class IgniteSystemProperties extends
IgniteCommonsSystemProperties
* Default is {@code 0} (do not print warning).
*/
@SystemProperty(value = "When set to positive number warning will be
produced when outgoing message queue size of " +
- "TCP communication SPI exeeds provided value. Default is 0 (do not
print warning).", type = Integer.class)
+ "TCP communication SPI exeeds provided value. Default is 0 (do not
print warning)", type = Integer.class)
public static final String IGNITE_TCP_COMM_MSG_QUEUE_WARN_SIZE =
"IGNITE_TCP_COMM_MSG_QUEUE_WARN_SIZE";
/**