This is an automated email from the ASF dual-hosted git repository. namelchev pushed a commit to branch ignite-18278 in repository https://gitbox.apache.org/repos/asf/ignite.git
commit f750bf5c195d4149929ffba7454312ee34c8e304 Author: NSAmelchev <[email protected]> AuthorDate: Tue Nov 29 17:38:39 2022 +0300 Fix tests --- .../internal/commandline/systemview/SystemViewCommandArg.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/control-utility/src/main/java/org/apache/ignite/internal/commandline/systemview/SystemViewCommandArg.java b/modules/control-utility/src/main/java/org/apache/ignite/internal/commandline/systemview/SystemViewCommandArg.java index 75022bba189..5e3b8e6418a 100644 --- a/modules/control-utility/src/main/java/org/apache/ignite/internal/commandline/systemview/SystemViewCommandArg.java +++ b/modules/control-utility/src/main/java/org/apache/ignite/internal/commandline/systemview/SystemViewCommandArg.java @@ -21,7 +21,11 @@ import org.apache.ignite.internal.commandline.argument.CommandArg; /** Represents all possible arguments for {@link SystemViewCommand}. */ public enum SystemViewCommandArg implements CommandArg { - /** Id of the node to get the system view from. */ + /** + * Id of the node to get the system view from. + * + * @deprecated Use {@link SystemViewCommandArg#NODE_IDS} instead. + */ @Deprecated NODE_ID("--node-id"),
