-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[UI Feature] Add full-list log output to execution detail panel #744
Conversation
Signed-off-by: James <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #744 +/- ##
==========================================
+ Coverage 66.40% 66.50% +0.10%
==========================================
Files 474 475 +1
Lines 11686 11713 +27
Branches 2153 2155 +2
==========================================
+ Hits 7760 7790 +30
+ Misses 3926 3923 -3
... and 2 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
return reasons.map( | ||
reason => | ||
(reason.occurredAt | ||
? formatDateUTC(timestampToDate(reason.occurredAt)) + '\n' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't want to format the date; just show the text as-is here.
) || [] | ||
) | ||
.flat() | ||
.sort((a, b) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We also don't want to do sorting here; just print the array as returned.
taskExecutionDetails?.entities.map( | ||
taskExecution => taskExecution.closure.reason, | ||
taskExecution => taskExecution.closure.reasons || [], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to add a fallback here for cases where users are running older versions of admin; fall back to reason
.
Signed-off-by: James <[email protected]>
* fix: added scrollable mono text for log messages Signed-off-by: James <[email protected]> * fix: update flyteidl, use reasons instead of reason Signed-off-by: James <[email protected]> * fix: yarn lock file updated * fix: only messages * fix: added fallback for reason Signed-off-by: James <[email protected]> --------- Signed-off-by: James <[email protected]> Signed-off-by: Carina Ursu <[email protected]>
🎉 This PR is included in version 1.7.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
flyteorg/flyte#3592
mono.mov
How to test this:
Even though I had a discussion with Dan, but I could not create a workflow to generate the error messages real time so I just test this with some generated text (increasing by time interval on the video)
This PR includes flyteidl version updates (to v1.3.18).
Type
Are all requirements met?
Complete description
Added a new component ScrollableMonospaceText
Tracking Issue
flyteorg/flyte#3592