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.

"DISABLE_BUILD_REQUESTS" Property #4496

duclong.ng ·
if ("true".equalsIgnoreCase(System.getProperty("DISABLE_BUILD_REQUESTS")))
	throw new QuickbuildException("All build requests are disabled");

I found this in the file DefaultBuildEngine.java -> Where can I find the "DISABLE_BUILD_REQUESTS" property?

  • replies 4
  • views 196
  • stars 0
robinshen ADMIN ·

You may specify this in conf/wrapper.conf of QB server, for instance add below line:
wrapper.java.additional.5=-DDISABLE_BUILD_REQUESTS=true

Then restart QB server to make it taking effect.

duclong.ng ·

After the Conf has been changed, how do I use this? And what purpose does it use?

robinshen ADMIN ·

This will prevent all build requests from running, and it is there for debugging purpose. Normally you do not need this.

robinshen ADMIN ·

It will take effect immediately after you restart the server