mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 20:02:29 +01:00
Adding tracelogging to CitrixResourceBase xapi task handling.
Currently it is very hard to see which tasks are pending in cloudstack that need to be executed by xapi. Ideally we would like to have a central overview of all tasks centrally. But for now being able to enable tracelogging should give some insight in what is going on.
This commit is contained in:
parent
3160a0c2da
commit
329c6eb4d3
@ -3721,8 +3721,14 @@ public abstract class CitrixResourceBase implements ServerResource, HypervisorRe
|
||||
|
||||
protected void waitForTask(Connection c, Task task, long pollInterval, long timeout) throws XenAPIException, XmlRpcException {
|
||||
long beginTime = System.currentTimeMillis();
|
||||
if (s_logger.isTraceEnabled()) {
|
||||
s_logger.trace("Task " + task.getNameLabel(c) + " (" + task.getType(c) + ") sent to " + c.getSessionReference() + " is pending completion with a " + timeout + "ms timeout");
|
||||
}
|
||||
while (task.getStatus(c) == Types.TaskStatusType.PENDING) {
|
||||
try {
|
||||
if (s_logger.isTraceEnabled()) {
|
||||
s_logger.trace("Task " + task.getNameLabel(c) + " (" + task.getType(c) + ") is pending, sleeping for " + pollInterval + "ms");
|
||||
}
|
||||
Thread.sleep(pollInterval);
|
||||
} catch (InterruptedException e) {
|
||||
}
|
||||
@ -3737,6 +3743,9 @@ public abstract class CitrixResourceBase implements ServerResource, HypervisorRe
|
||||
|
||||
protected void checkForSuccess(Connection c, Task task) throws XenAPIException, XmlRpcException {
|
||||
if (task.getStatus(c) == Types.TaskStatusType.SUCCESS) {
|
||||
if (s_logger.isTraceEnabled()) {
|
||||
s_logger.trace("Task " + task.getNameLabel(c) + " (" + task.getType(c) + ") completed");
|
||||
}
|
||||
return;
|
||||
} else {
|
||||
String msg = "Task failed! Task record: " + task.getRecord(c);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user