You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampark.apache.org by be...@apache.org on 2022/11/01 08:51:15 UTC

[incubator-streampark] branch dev updated: [Bug] Added SUSPENDED button and removed FINISHED redundant configuration(#1176) (#1940)

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

benjobs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampark.git


The following commit(s) were added to refs/heads/dev by this push:
     new 0a38acdc1 [Bug] Added SUSPENDED button and removed FINISHED redundant configuration(#1176) (#1940)
0a38acdc1 is described below

commit 0a38acdc1ff6c431ab909904b8583e26dc43113d
Author: didiaode18 <56...@qq.com>
AuthorDate: Tue Nov 1 16:51:09 2022 +0800

    [Bug] Added SUSPENDED button and removed FINISHED redundant configuration(#1176) (#1940)
---
 .../streampark-console-webapp/src/views/flink/app/State.vue             | 2 +-
 .../streampark-console-webapp/src/views/flink/app/View.vue              | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/streampark-console/streampark-console-webapp/src/views/flink/app/State.vue b/streampark-console/streampark-console-webapp/src/views/flink/app/State.vue
index 3a5806a9a..c25f5ee47 100644
--- a/streampark-console/streampark-console-webapp/src/views/flink/app/State.vue
+++ b/streampark-console/streampark-console-webapp/src/views/flink/app/State.vue
@@ -61,7 +61,7 @@
           v-if="data['state'] === 9">CANCELED</a-tag>
         <a-tag
           color="#1890ff"
-          v-if="data['state'] === 10 || data['state'] === 19">FINISHED</a-tag>
+          v-if="data['state'] === 10">FINISHED</a-tag>
         <a-tag
           color="#722ed1"
           v-if="data['state'] === 11">SUSPENDED</a-tag>
diff --git a/streampark-console/streampark-console-webapp/src/views/flink/app/View.vue b/streampark-console/streampark-console-webapp/src/views/flink/app/View.vue
index 0ddf340e1..2bd656609 100644
--- a/streampark-console/streampark-console-webapp/src/views/flink/app/View.vue
+++ b/streampark-console/streampark-console-webapp/src/views/flink/app/View.vue
@@ -1287,6 +1287,7 @@ export default {
           {text: 'FAILED', value: 7},
           {text: 'CANCELED', value: 9},
           {text: 'FINISHED', value: 10},
+          {text: 'SUSPENDED', value: 11},
           {text: 'LOST', value: 13},
           {text: 'SILENT', value: 17},
           {text: 'TERMINATED', value: 18}