X-czh commented on code in PR #23698:
URL: https://github.com/apache/flink/pull/23698#discussion_r1391955874
##########
flink-runtime-web/web-dashboard/src/app/interfaces/job-exception.ts:
##########
@@ -44,7 +44,8 @@ export interface ExceptionInfo {
stacktrace: string;
timestamp: number;
taskName: string;
- location: string;
+ endpoint: string;
+ taskManagerId: string;
Review Comment:
I added it as hotfix because the field is used in
"flink-runtime-web/web-dashboard/src/app/pages/job/exceptions/job-exceptions.component.html"
L85 but not declared in the `ExecptionInfo` interface, and Idea Inteiij throws
an error: "Unresolved variable taskManagerId". However, I'm not familiar with
TS and I have no idea why the code can still run no matter the field is
declared in the interface or not. @yangjunhan Could you help take a look here?
Many thanks in advance.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]