From 42d01a055481942a8fa51aa82ddff179cbe5a5d6 Mon Sep 17 00:00:00 2001 From: VladSenyuta Date: Mon, 15 Apr 2024 10:19:55 +0200 Subject: [PATCH] fix log results --- .../java/io/kafbat/ui/variables/Common.java | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/e2e-tests/src/main/java/io/kafbat/ui/variables/Common.java b/e2e-tests/src/main/java/io/kafbat/ui/variables/Common.java index ab4b7b760..33517d7dc 100644 --- a/e2e-tests/src/main/java/io/kafbat/ui/variables/Common.java +++ b/e2e-tests/src/main/java/io/kafbat/ui/variables/Common.java @@ -4,15 +4,16 @@ public interface Common { String LOG_RESULT = "-> {}"; String BROKER_SOURCE_INFO_TOOLTIP = - "Dynamic topic config = dynamic topic config that is configured for a specific topic\n" - + "Dynamic broker logger config = dynamic broker logger config that is configured for a specific broker\n" - + "Dynamic broker config = dynamic broker config that is configured for a specific broker\n" - + "Dynamic default broker config = dynamic broker config that is configured as default " - + "for all brokers in the cluster\n" - + "Static broker config = static broker config provided as broker properties at start up " - + "(e.g. server.properties file)\n" - + "Default config = built-in default configuration for configs that have a default value\n" - + "Unknown = source unknown e.g. in the ConfigEntry used for alter requests where source is not set"; + """ + Dynamic topic config = dynamic topic config that is configured for a specific topic + Dynamic broker logger config = dynamic broker logger config that is configured for a specific broker + Dynamic broker config = dynamic broker config that is configured for a specific broker + Dynamic default broker config = dynamic broker config that is configured as default \ + for all brokers in the cluster + Static broker config = static broker config provided as broker properties at start up \ + (e.g. server.properties file) + Default config = built-in default configuration for configs that have a default value + Unknown = source unknown e.g. in the ConfigEntry used for alter requests where source is not set"""; String FILTER_CODE_STRING = "has(record.keyAsText) && record.keyAsText.matches(\".*[Gg]roovy.*\")"; String FILTER_CODE_JSON = "has(record.key.name.first) && record.key.name.first == 'user1'"; }