Skip to content

Commit

Permalink
AS7-3599 Fixed subsystem parser to handle the request-processors attr…
Browse files Browse the repository at this point in the history
…ibutes as optional
  • Loading branch information
sguilhen authored and kabir committed Feb 3, 2012
1 parent 571c61f commit 02deb76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ private void parsePOAConfig(XMLExtendedStreamReader reader, ModelNode node) thro
// parse the poa request-processors config attributes.
EnumSet<Attribute> attributes =
EnumSet.of(Attribute.POA_REQUEST_PROC_POOL_SIZE, Attribute.POA_REQUEST_PROC_MAX_THREADS);
this.parseAttributes(reader, node, attributes, EnumSet.copyOf(attributes));
this.parseAttributes(reader, node, attributes, null);
// the request-processors element doesn't have child elements.
requireNoContent(reader);
break;
Expand Down

0 comments on commit 02deb76

Please sign in to comment.