]
Brian Stansberry updated WFLY-13284:
------------------------------------
Component/s: EJB
Fix incorrect method call in EJB3IIOPResource write-attribute
handler
---------------------------------------------------------------------
Key: WFLY-13284
URL:
https://issues.redhat.com/browse/WFLY-13284
Project: WildFly
Issue Type: Bug
Components: EJB, IIOP
Affects Versions: 19.0.0.Final
Reporter: Richard Achmatowicz
Assignee: Richard Achmatowicz
Priority: Major
Fix For: 20.0.0.Beta1
In the write-attribute handler for the ENABLE_BY_DEFAULT attribute, the wrong method is
being called when adjusting the Runtime service to reflect the change to the attribute
value. This was due to an inadvertent error when setting up write handlers for two
attributes. In short, in the write handler for ENABLE_BY_DEFAULT:
{noformat}
service.setUseQualifiedName(value);
{noformat}
should be
{noformat}
service.setEnableByDefault(value);
{noformat}