]
Ingo Weiss moved JBEAP-12045 to WFLY-9071:
------------------------------------------
Project: WildFly (was: JBoss Enterprise Application Platform)
Key: WFLY-9071 (was: JBEAP-12045)
Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1)
Component/s: JMS
(was: JMS)
Remove check that journal-file-size must be multiply of 512 from
messaging integration
--------------------------------------------------------------------------------------
Key: WFLY-9071
URL:
https://issues.jboss.org/browse/WFLY-9071
Project: WildFly
Issue Type: Bug
Components: JMS
Reporter: Ingo Weiss
Assignee: Ingo Weiss
Priority: Minor
Current check that journal-file-size must be multiply of 512 is no longer valid and
should be removed. Fixes for ARTEMIS-937 and JBEAP-9005 for setting sector size validates
that it's configured properly and automatically rounds to nearest value.
Following CLI command should then pass:
{code}
[standalone@localhost:9990 /]
/subsystem=messaging-activemq/server=default:write-attribute(name=journal-file-size,value=123456789)
{
"outcome" => "failed",
"failure-description" => "WFLYMSGAMQ0088: 123456789 is an invalid
value for parameter journal-file-size, it should be multiple of 512",
"rolled-back" => true
}
{code}