(Forgot 'Waiting on Agents')
|
(Build Request Added)
|
Line 2: | |||
= Components = | = Components = | ||
+ | == Build Requests == | ||
+ | Build requests may not update properly if the BuildRequestEndEvent does not fire. In that case, the SQL below will update the BuildRequest. | ||
+ | === SQL to Set All Running Build Requests to a Status === | ||
+ | <pre>UPDATE BUILD_REQUEST SET STATUS = 'XX' WHERE STATUS = 'YY';</pre> | ||
+ | === SQL to Set Build Requests With Certain BuildRequest ID === | ||
+ | Replace '''ZZ''' with the ID of your Build Request. | ||
+ | <pre>UPDATE BUILD_REQUEST SET STATUS = 'XX' WHERE ID = ZZ;</pre> | ||
== Workflow Cases == | == Workflow Cases == | ||
Workflow cases may not update properly if the WorkflowEndEvent does not fire. In that case, the SQL below will update the WorkflowCase. | Workflow cases may not update properly if the WorkflowEndEvent does not fire. In that case, the SQL below will update the WorkflowCase. |