This is an automated email from the ASF dual-hosted git repository. huweihua pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit 5f9bef4288f59f428d4b2036f6eb9b30adf08287 Author: Zhanghao Chen <[email protected]> AuthorDate: Fri Nov 10 22:15:22 2023 +0800 [hotfix][ui] Include the taskManagerId field in the ExceptionInfo interface --- flink-runtime-web/web-dashboard/src/app/interfaces/job-exception.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/flink-runtime-web/web-dashboard/src/app/interfaces/job-exception.ts b/flink-runtime-web/web-dashboard/src/app/interfaces/job-exception.ts index 462dba8b580..e49e6305734 100644 --- a/flink-runtime-web/web-dashboard/src/app/interfaces/job-exception.ts +++ b/flink-runtime-web/web-dashboard/src/app/interfaces/job-exception.ts @@ -45,6 +45,7 @@ export interface ExceptionInfo { timestamp: number; taskName: string; location: string; + taskManagerId: string; } export interface RootExceptionInfo extends ExceptionInfo {
