Hello, Still looking for assistance on changing the execution size of a process queue via Redwood Script
Tried the following scripts (for a Gobal Process Queue):
{
Queue aq = jcsSession.getQueueByName("ECC_Queue_TEMP");
aq.setExecutionSize(new Long(11));
}
and
{
Partition pt = jcsSession.getPartitionByName("GLOBAL");
if (pt == null)
{
throw new RuntimeException("'Could not find the requested Partition'");
}
Queue q = jcsSession.getQueueByName("HBW_Queue");
q.setExecutionSize(new Long(11));
}
Does not fail or prodiuce any results