Evgeny Stanilovsky created IGNITE-15734:
-------------------------------------------
Summary: Erroneous string formatting while changing cluster tag.
Key: IGNITE-15734
URL: https://issues.apache.org/jira/browse/IGNITE-15734
Project: Ignite
Issue Type: Bug
Affects Versions: 2.11
Reporter: Evgeny Stanilovsky
Assignee: Evgeny Stanilovsky
{noformat}
log.info(
"Cluster tag will be set to new value: " +
newVal != null ? newVal.tag() : "null" +
", previous value was: " +
oldVal != null ? oldVal.tag() : "null");
{noformat}
without braces
{noformat}
"Cluster tag will be set to new value: " + newVal
{noformat}
always not null;
--
This message was sent by Atlassian Jira
(v8.3.4#803005)