This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 06655c2bbc8 [hotfix] Move util to WebFrontedITCase
06655c2bbc8 is described below

commit 06655c2bbc8aeb2a2a04d4480df59ae4cdfb45e8
Author: Chesnay Schepler <ches...@apache.org>
AuthorDate: Thu Aug 4 12:22:12 2022 +0200

    [hotfix] Move util to WebFrontedITCase
---
 .../java/org/apache/flink/runtime/webmonitor/WebFrontendITCase.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/WebFrontendITCase.java
 
b/flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/WebFrontendITCase.java
index 18480d139fc..d23a0cc1898 100644
--- 
a/flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/WebFrontendITCase.java
+++ 
b/flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/WebFrontendITCase.java
@@ -266,7 +266,7 @@ class WebFrontendITCase {
     void getConfiguration(@InjectClusterRESTAddress URI restAddress) throws 
Exception {
         String config =
                 getFromHTTP("http://localhost:"; + restAddress.getPort() + 
"/jobmanager/config");
-        Map<String, String> conf = 
WebMonitorUtils.fromKeyValueJsonArray(config);
+        Map<String, String> conf = fromKeyValueJsonArray(config);
 
         MemorySize expected = 
CLUSTER_CONFIGURATION.get(TaskManagerOptions.MANAGED_MEMORY_SIZE);
         MemorySize actual =

Reply via email to