This documentation relates to QuickBuild 5.0.x
Select here if you are using a different version

Pause System

Version 1 by Robin Shen
on Feb 19, 2013 12:31.


 
compared with
Current by Robin Shen
on Feb 19, 2013 12:36.


 
Key
These lines were removed. This word was removed.
These lines were added. This word was added.

View page history


There are 0 changes. View first change.

 QuickBuild can be paused to prevent builds from running via RESTful call.
 h1. Syntax
 QuickBuild can be paused by issuing GET request to below url:
 {code}http://localhost:8810/rest/pause{code}
 The response is of mime type _text/plain_ and the content is simply _paused_ if successful.
  
 h1. Security
 You will need to use http BASIC authentication to login as administrator to pause the system.
  
 h1. Demo
 We use [curl|http://curl.haxx.se/] to demonstrate how to paused the system:
 {code}curl -u admin:admin http://localhost:8810/rest/pause{code}