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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9c25c54  [FLINK-25313] Enable flink runtime web-ui (#45)
9c25c54 is described below

commit 9c25c54a73578b24b15e9c52e28740460a687f93
Author: Junfan Zhang <[email protected]>
AuthorDate: Wed Apr 20 18:47:07 2022 +0800

    [FLINK-25313] Enable flink runtime web-ui (#45)
    
    * [FLINK-25313] Enable flink runtime web-ui when running in the IDE
    
    With this, when running Flink applications locally, you can browse Flink's 
web UI to see more details.
    
    Co-authored-by: Junfan Zhang <[email protected]>
---
 build.gradle | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/build.gradle b/build.gradle
index 9395b08..dbce4f3 100644
--- a/build.gradle
+++ b/build.gradle
@@ -87,6 +87,9 @@ subprojects {
         shadow "org.apache.flink:flink-java:${flinkVersion}"
         shadow 
"org.apache.flink:flink-streaming-java_${scalaBinaryVersion}:${flinkVersion}"
         shadow 
"org.apache.flink:flink-streaming-scala_${scalaBinaryVersion}:${flinkVersion}"
+        
+        // allows using Flink's web UI when running in the IDE:
+        shadow 
"org.apache.flink:flink-runtime-web_${scalaBinaryVersion}:${flinkVersion}"
 
         if (project != project(":common")) {
             implementation project(path: ':common')

Reply via email to