Mykhaylo Stepanov created IGNITE-12526: ------------------------------------------
Summary: WAL file archiver logging bug Key: IGNITE-12526 URL: https://issues.apache.org/jira/browse/IGNITE-12526 Project: Ignite Issue Type: Bug Components: persistence Affects Versions: 2.7.6 Reporter: Mykhaylo Stepanov WAL file archive logs null if instance name not set. Example output: {noformat} 2020/01/10 20:42:58.355 [wal-file-archiver%null-#84] INFO Copied file{noformat} Check for null instance name should be added in FileWriteAheadLogManager.java {code:java} private FileArchiver(SegmentAware segmentAware, IgniteLogger log) throws IgniteCheckedException { super(cctx.igniteInstanceName(), "wal-file-archiver%" + cctx.igniteInstanceName(), log, cctx.kernalContext().workersRegistry()); init(segmentAware); } {code} -- This message was sent by Atlassian Jira (v8.3.4#803005)