changed queue to an array

This commit is contained in:
JT Smith 2009-11-03 12:04:24 -06:00
parent 3958a36271
commit 630f1b0537
2 changed files with 128 additions and 226 deletions

View file

@ -294,13 +294,13 @@ sub www_runCronJob {
if ($session->stow->get('singletonWorkflowClash')) {
$session->errorHandler->warn(
"Could not create workflow instance for workflowId '" . $task->get( "workflowId" )
. "': It is a singleton workflow and is still running from the last invocation."
. "' from taskId '".$taskId."': It is a singleton workflow and is still running from the last invocation."
);
return "done";
}
$session->errorHandler->error(
"Could not create workflow instance for workflowId '" . $task->get( "workflowId" )
. "': The result was undefined"
. "' from taskId '".$taskId."': The result was undefined"
);
return "done";
}