Bug 956904

Summary: Infinispan remote-store requires remote-servers but not marked as required in mgmt model
Product: [JBoss] JBoss Enterprise Application Platform 6 Reporter: Takayoshi Kimura <tkimura>
Component: ClusteringAssignee: Richard Achmatowicz <rachmato>
Status: CLOSED CURRENTRELEASE QA Contact: Jitka Kozana <jkudrnac>
Severity: medium Docs Contact: Russell Dickenson <rdickens>
Priority: unspecified    
Version: 6.0.1CC: jkudrnac, kkhan, myarboro, rhusar, rjanik, rsvoboda, twells
Target Milestone: DR2   
Target Release: EAP 6.3.0   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
An issue was discovered in the handling of Infinispan's `remote-store` configuration. The `remote-store` option required that the value of the `remote-server` option be set, but this was not enforced, resulting in failure of the `remote store`. This issue has been resolved by marking the `remote-server` parameter as being mandatory, preventing an invalid `remote-store` configuration. In this example, the management CLI command is incomplete and a warning is displayed. ---- [standalone@localhost:9990 /] /subsystem=infinispan/cache-container=web/distributed-cache=dist/remote-store=REMOTE_STORE:add(remote-servers=[]) { "outcome" => "failed", "failure-description" => "JBAS014706: [0] is an invalid size for parameter remote-servers. A minimum length of [1] is required", "rolled-back" => true, "response-headers" => {"process-state" => "reload-required"} } ---- In this example, the management CLI command is complete. ---- [standalone@localhost:9990 /] /subsystem=infinispan/cache-container=web/distributed-cache=dist/remote-store=REMOTE_STORE:add(remote-servers=[{"outbound-socket-binding" => "fred"}]) { "outcome" => "success", "response-headers" => {"process-state" => "reload-required"} } ----
Story Points: ---
Clone Of: Environment:
Last Closed: 2014-06-28 15:39:49 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Takayoshi Kimura 2013-04-25 23:58:31 UTC
Product ticket for https://issues.jboss.org/browse/WFLY-1271

Comment 2 JBoss JIRA Server 2013-12-17 18:28:21 UTC
Richard Achmatowicz <rachmato> updated the status of jira WFLY-1271 to Coding In Progress

Comment 3 JBoss JIRA Server 2013-12-17 23:38:01 UTC
Richard Achmatowicz <rachmato> updated the status of jira WFLY-1271 to Resolved

Comment 4 JBoss JIRA Server 2013-12-18 10:03:16 UTC
Radoslav Husar <rhusar> updated the status of jira WFLY-1271 to Reopened

Comment 6 Radoslav Husar 2014-05-15 09:01:49 UTC
Fixing typo in doc text.