Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

Error when Recommend multiple and Unrecommend multiple build #4665

duclong.ng ·

I find there is a difference between multiple recommend and just one recommend (similar to unrecommend).
Using the save function before or after the BuildListener may result in a difference in the final Status.

multiple recommend

Quickbuild.getInstance(BuildManager.class).save(build);
for (BuildListener listener: PluginManager.instance.getExtensions(BuildListener.class))
	listener.buildRecommended();

just one recommend

for (BuildListener listener: PluginManager.instance.getExtensions(BuildListener.class))
	listener.buildRecommended();
Quickbuild.getInstance(BuildManager.class).save(build);

Please correct logic and synchronized in all function

Track: https://track.pmease.com/browse/QB-4205

  • replies 1
  • views 4
  • stars 1
robinshen ADMIN ·

Thanks for reporting. Will be fixed in next patch release.