
Key: |
QB-3246
|
Type: |
Bug
|
Status: |
Resolved
|
Resolution: |
Fixed
|
Priority: |
Major
|
Assignee: |
Unassigned
|
Reporter: |
Le Thanh Tuan
|
Votes: |
3
|
Watchers: |
1
|
If you were logged in you would be able to see more operations.
|
|
|
QuickBuild
Created: 30/Aug/18 08:00 AM
Updated: 18/Sep/18 03:12 PM
|
|
Component/s: |
None
|
Affects Version/s: |
None
|
Fix Version/s: |
8.0.20
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
When we recommend/Unrecommend the individual build on Build Page, It will execute many BuildListeners if has.
But when we recommend/unrecommend multipe builds on History Builds Page and Search Builds Page, It do not execute anything.
I traced code and found this on BuildPage.java file:
+ Recommend:
for (BuildListener listener: PluginManager.instance.getExtensions(BuildListener.class))
listener.buildRecommended();
+ Unrecommend:
for (BuildListener listener: PluginManager.instance.getExtensions(BuildListener.class))
listener.buildUnRecommended();
But on HistoryBuildsPage.java and SearchBuildsPage.java do not have.
|
Description
|
When we recommend/Unrecommend the individual build on Build Page, It will execute many BuildListeners if has.
But when we recommend/unrecommend multipe builds on History Builds Page and Search Builds Page, It do not execute anything.
I traced code and found this on BuildPage.java file:
+ Recommend:
for (BuildListener listener: PluginManager.instance.getExtensions(BuildListener.class))
listener.buildRecommended();
+ Unrecommend:
for (BuildListener listener: PluginManager.instance.getExtensions(BuildListener.class))
listener.buildUnRecommended();
But on HistoryBuildsPage.java and SearchBuildsPage.java do not have.
|
Show » |
|