[SPARK-28677][WEBUI] "Select All" checkbox in StagePage doesn't work properly#25397
[SPARK-28677][WEBUI] "Select All" checkbox in StagePage doesn't work properly#25397sarutak wants to merge 2 commits intoapache:masterfrom
Conversation
|
CC: @pgandhi999 and @tgravescs |
|
Test build #108877 has finished for PR 25397 at commit
|
|
retest this please. |
|
Test build #108879 has finished for PR 25397 at commit
|
|
@sarutak Thank you for catching the bug. Interestingly, I am only able to reproduce the bug in Spark 3.0, it works fine in Spark 2.3 and 2.4. Are you also able to reproduce the bug in 2.3 and 2.4? |
srowen
left a comment
There was a problem hiding this comment.
OK by me if it's a clean UI fix.
There was a problem hiding this comment.
NIT: Could you rename the variable to something like allColumns to have more clarity?
|
Ah, that makes sense. Thank you. |
|
LGTM +1 |
|
"2.3 and 2.4 use additional-metrics.js rather than stagepage.js for the checkboxes. Can you please explain this in more details so we have it documented what really book it? Please also update the description to say what you change and ideally why it was broken. |
|
|
Test build #108882 has finished for PR 25397 at commit
|
|
Merged to master |
What changes were proposed in this pull request?
In StagePage, only the first optional column (Scheduler Delay, in this case) appears even though "Select All" checkbox is checked.
The cause is that wrong method is used to manipulate multiple columns. columns should have been used but column was used.
I've fixed this issue by replacing the
columnwithcolumns.How was this patch tested?
Confirmed behavior of the check-box.