[jboss-cvs] JBossAS SVN: r86970 - in trunk/testsuite/src/resources/cluster: profileservice and 1 other directory.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Wed Apr 8 12:52:57 EDT 2009
Author: bstansberry at jboss.com
Date: 2009-04-08 12:52:57 -0400 (Wed, 08 Apr 2009)
New Revision: 86970
Added:
trunk/testsuite/src/resources/cluster/profileservice/
trunk/testsuite/src/resources/cluster/profileservice/farm-addedcontent-service.xml
Log:
[JBAS-5552] Sort issues with DeploymentRepository.addDeploymentContent(...)
Added: trunk/testsuite/src/resources/cluster/profileservice/farm-addedcontent-service.xml
===================================================================
--- trunk/testsuite/src/resources/cluster/profileservice/farm-addedcontent-service.xml (rev 0)
+++ trunk/testsuite/src/resources/cluster/profileservice/farm-addedcontent-service.xml 2009-04-08 16:52:57 UTC (rev 86970)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<server>
+
+ <!-- A Thread pool service -->
+ <mbean code="org.jboss.util.threadpool.BasicThreadPool"
+ name="jboss.system:service=FarmAddContentTestThreadPool">
+ <attribute name="Name">FarmAddContentThreadPool</attribute>
+ <attribute name="ThreadGroupName">Node0FarmThreads</attribute>
+ <!-- How long a thread will live without any tasks in MS -->
+ <attribute name="KeepAliveTime">1000</attribute>
+ <!-- The max number of threads in the pool -->
+ <attribute name="MaximumPoolSize">1</attribute>
+ <!-- The max number of tasks before the queue is full -->
+ <attribute name="MaximumQueueSize">10</attribute>
+ <!-- The behavior of the pool when a task is added and the queue is full.
+ abort - a RuntimeException is thrown
+ run - the calling thread executes the task
+ wait - the calling thread blocks until the queue has room
+ discard - the task is silently discarded without being run
+ discardOldest - check to see if a task is about to complete and enque
+ the new task if possible, else run the task in the calling thread
+ -->
+ <attribute name="BlockingMode">abort</attribute>
+ </mbean>
+
+</server>
Property changes on: trunk/testsuite/src/resources/cluster/profileservice/farm-addedcontent-service.xml
___________________________________________________________________
Name: svn:keywords
+
More information about the jboss-cvs-commits
mailing list