]
Brian Stansberry updated AS7-2219:
----------------------------------
Fix Version/s: 7.1.0.Beta1
Thread factory can be removed, even when it is assigned to a pool.
------------------------------------------------------------------
Key: AS7-2219
URL:
https://issues.jboss.org/browse/AS7-2219
Project: Application Server 7
Issue Type: Bug
Components: Domain Management
Affects Versions: 7.1.0.Alpha1
Reporter: Stan Silvert
Assignee: Brian Stansberry
Fix For: 7.1.0.Beta1
You should not be able to remove a thread factory if it is currently assigned to a thread
pool.
{code}
[standalone@localhost:9999 subsystem=threads] :read-resource(recursive=true)
{
"outcome" => "success",
"result" => {
"bounded-queue-thread-pool" => undefined,
"scheduled-thread-pool" => undefined,
"unbounded-queue-thread-pool" => undefined,
"queueless-thread-pool" => {"queueless" => {
"blocking" => false,
"handoff-executor" => undefined,
"keepalive-time" => undefined,
"max-threads" => {
"count" => 2,
"per-cpu" => 1
},
"name" => "queueless",
"properties" => undefined,
"thread-factory" => "mine"
}},
"thread-factory" => {"mine" => {
"group-name" => undefined,
"name" => "mine",
"priority" => "1",
"properties" => undefined,
"thread-name-pattern" => undefined
}}
},
"response-headers" => {"process-state" =>
"reload-required"}
}
[standalone@localhost:9999 subsystem=threads] cd thread-factory=mine
[standalone@localhost:9999 thread-factory=mine] :remove
{
"outcome" => "success",
"response-headers" => {"process-state" =>
"reload-required"}
}
[standalone@localhost:9999 thread-factory=mine] cd ..
[standalone@localhost:9999 subsystem=threads] :read-resource(recursive=true)
{
"outcome" => "success",
"result" => {
"bounded-queue-thread-pool" => undefined,
"scheduled-thread-pool" => undefined,
"thread-factory" => undefined,
"unbounded-queue-thread-pool" => undefined,
"queueless-thread-pool" => {"queueless" => {
"blocking" => false,
"handoff-executor" => undefined,
"keepalive-time" => undefined,
"max-threads" => {
"count" => 2,
"per-cpu" => 1
},
"name" => "queueless",
"properties" => undefined,
"thread-factory" => "mine"
}}
},
"response-headers" => {"process-state" =>
"reload-required"}
}
[standalone@localhost:9999 subsystem=threads]
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: