This is an automated email from the ASF dual-hosted git repository.
zstan 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 1335c5308f5 IGNITE-28193 Fix typo in log message when node stopped
with errors (#12962)
1335c5308f5 is described below
commit 1335c5308f5c22d450929c77081920fd4bcabdd1
Author: Reza Taroosheh <[email protected]>
AuthorDate: Thu Apr 2 13:26:56 2026 +0200
IGNITE-28193 Fix typo in log message when node stopped with errors (#12962)
---
.../org/apache/ignite/internal/plugin/IgniteLogInfoProviderImpl.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/core/src/main/java/org/apache/ignite/internal/plugin/IgniteLogInfoProviderImpl.java
b/modules/core/src/main/java/org/apache/ignite/internal/plugin/IgniteLogInfoProviderImpl.java
index 9b47049511d..01f988e3a13 100644
---
a/modules/core/src/main/java/org/apache/ignite/internal/plugin/IgniteLogInfoProviderImpl.java
+++
b/modules/core/src/main/java/org/apache/ignite/internal/plugin/IgniteLogInfoProviderImpl.java
@@ -935,7 +935,7 @@ public class IgniteLogInfoProviderImpl implements
IgniteLogInfoProvider {
U.quiet(false, "Ignite node stopped OK [" + nodeName +
"uptime=" +
((IgniteKernal)ignite).upTimeFormatted() + ']');
else
- U.quiet(true, "Ignite node stopped wih ERRORS [" + nodeName +
"uptime=" +
+ U.quiet(true, "Ignite node stopped with ERRORS [" + nodeName +
"uptime=" +
((IgniteKernal)ignite).upTimeFormatted() + ']');
}