xtern commented on a change in pull request #9240:
URL: https://github.com/apache/ignite/pull/9240#discussion_r680771949
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/SnapshotRestoreProcess.java
##########
@@ -86,6 +87,12 @@
/** Reject operation message. */
private static final String OP_REJECT_MSG = "Cache group restore operation
was rejected. ";
+ /** Snapshot restore operation finish message. */
+ private static final String OP_FINISHED_MSG = "Successfully restored cache
group(s) from the snapshot [reqId=%s]";
+
+ /** Snapshot restore operation failed message. */
+ private static final String OP_FAILED_MSG = "Failed to restore snapshot
cache group [reqId=%s%s]";
Review comment:
What kind of problem do you see here?
This is a common message format for events and logging. Addition %s is to
add error message into event message.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]