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/10/28 02:41:50 UTC

[incubator-streampark] branch dev updated: [Bug] StreamPark cannot search for failed status tasks (#1917)

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 57712e29b [Bug] StreamPark cannot search for failed status tasks (#1917)
57712e29b is described below

commit 57712e29b7ac800050cd0b527ac4b7ebc8d49d00
Author: xujiangfeng001 <10...@users.noreply.github.com>
AuthorDate: Fri Oct 28 10:41:44 2022 +0800

    [Bug] StreamPark cannot search for failed status tasks (#1917)
---
 .../streampark-console-webapp/src/views/flink/app/View.vue              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 648869d3e..0ddf340e1 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
@@ -1284,7 +1284,7 @@ export default {
           {text: 'ADDED', value: 0},
           {text: 'STARTING', value: 3},
           {text: 'RUNNING', value: 5},
-          {text: 'FAILED', value: 6},
+          {text: 'FAILED', value: 7},
           {text: 'CANCELED', value: 9},
           {text: 'FINISHED', value: 10},
           {text: 'LOST', value: 13},