[JBoss JIRA] (ISPN-7705) Administration console - greyed out cluster action can still be selected
by Vladimir Blagojevic (JIRA)
[ https://issues.jboss.org/browse/ISPN-7705?page=com.atlassian.jira.plugin.... ]
Vladimir Blagojevic updated ISPN-7705:
--------------------------------------
Status: Open (was: New)
> Administration console - greyed out cluster action can still be selected
> ------------------------------------------------------------------------
>
> Key: ISPN-7705
> URL: https://issues.jboss.org/browse/ISPN-7705
> Project: Infinispan
> Issue Type: Bug
> Components: JMX, reporting and management
> Affects Versions: 9.0.0.Final
> Reporter: Roman Macor
> Assignee: Vladimir Blagojevic
> Priority: Minor
>
> When the cluster is in the running state, start, reload and restart actions are greyed out, but they can still be clicked and the selected action is performed.
> This is not the case for the node operations.
> Also, shouldn't restart action be available when server/node are in running state?
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 11 months
[JBoss JIRA] (ISPN-7705) Administration console - greyed out cluster action can still be selected
by Vladimir Blagojevic (JIRA)
[ https://issues.jboss.org/browse/ISPN-7705?page=com.atlassian.jira.plugin.... ]
Vladimir Blagojevic reassigned ISPN-7705:
-----------------------------------------
Assignee: Vladimir Blagojevic
> Administration console - greyed out cluster action can still be selected
> ------------------------------------------------------------------------
>
> Key: ISPN-7705
> URL: https://issues.jboss.org/browse/ISPN-7705
> Project: Infinispan
> Issue Type: Bug
> Components: JMX, reporting and management
> Affects Versions: 9.0.0.Final
> Reporter: Roman Macor
> Assignee: Vladimir Blagojevic
> Priority: Minor
>
> When the cluster is in the running state, start, reload and restart actions are greyed out, but they can still be clicked and the selected action is performed.
> This is not the case for the node operations.
> Also, shouldn't restart action be available when server/node are in running state?
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 11 months
[JBoss JIRA] (ISPN-7724) getAllCacheEntries with byte[] throws ClassCastException
by Radim Vansa (JIRA)
[ https://issues.jboss.org/browse/ISPN-7724?page=com.atlassian.jira.plugin.... ]
Radim Vansa updated ISPN-7724:
------------------------------
Forum Reference: https://developer.jboss.org/message/970859
> getAllCacheEntries with byte[] throws ClassCastException
> --------------------------------------------------------
>
> Key: ISPN-7724
> URL: https://issues.jboss.org/browse/ISPN-7724
> Project: Infinispan
> Issue Type: Bug
> Components: Core
> Affects Versions: 9.0.0.Final
> Reporter: Radim Vansa
> Assignee: Radim Vansa
>
> Testcase:
> {code}
> public void testGetAllCacheEntriesWithBytes() {
> Set<String> keys = new HashSet<>();
> for (int i = 0; i < numEntries; ++i) {
> String key = "key" + i;
> advancedCache(i % numNodes).put(key, new byte[]{(byte) i});
> keys.add(key);
> }
> List<Cache<String, byte[]>> caches = caches();
> for (Cache<String, byte[]> cache : caches) {
> Map<String, CacheEntry<String, byte[]>> map = cache.getAdvancedCache().getAllCacheEntries(keys);
> assertEquals(map.size(), keys.size());
> for (int i = 0; i < numEntries; ++i) {
> CacheEntry<String, byte[]> entry = map.get("key" + i);
> assertEquals(entry.getValue().length, 1);
> assertEquals(entry.getValue()[0], i);
> }
> }
> }
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 12 months
[JBoss JIRA] (ISPN-7724) getAllCacheEntries with byte[] throws ClassCastException
by Radim Vansa (JIRA)
[ https://issues.jboss.org/browse/ISPN-7724?page=com.atlassian.jira.plugin.... ]
Radim Vansa updated ISPN-7724:
------------------------------
Status: Pull Request Sent (was: Open)
Git Pull Request: https://github.com/infinispan/infinispan/pull/5082
> getAllCacheEntries with byte[] throws ClassCastException
> --------------------------------------------------------
>
> Key: ISPN-7724
> URL: https://issues.jboss.org/browse/ISPN-7724
> Project: Infinispan
> Issue Type: Bug
> Components: Core
> Affects Versions: 9.0.0.Final
> Reporter: Radim Vansa
> Assignee: Radim Vansa
>
> Testcase:
> {code}
> public void testGetAllCacheEntriesWithBytes() {
> Set<String> keys = new HashSet<>();
> for (int i = 0; i < numEntries; ++i) {
> String key = "key" + i;
> advancedCache(i % numNodes).put(key, new byte[]{(byte) i});
> keys.add(key);
> }
> List<Cache<String, byte[]>> caches = caches();
> for (Cache<String, byte[]> cache : caches) {
> Map<String, CacheEntry<String, byte[]>> map = cache.getAdvancedCache().getAllCacheEntries(keys);
> assertEquals(map.size(), keys.size());
> for (int i = 0; i < numEntries; ++i) {
> CacheEntry<String, byte[]> entry = map.get("key" + i);
> assertEquals(entry.getValue().length, 1);
> assertEquals(entry.getValue()[0], i);
> }
> }
> }
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 12 months
[JBoss JIRA] (ISPN-7724) getAllCacheEntries with byte[] throws ClassCastException
by Radim Vansa (JIRA)
[ https://issues.jboss.org/browse/ISPN-7724?page=com.atlassian.jira.plugin.... ]
Radim Vansa updated ISPN-7724:
------------------------------
Status: Open (was: New)
> getAllCacheEntries with byte[] throws ClassCastException
> --------------------------------------------------------
>
> Key: ISPN-7724
> URL: https://issues.jboss.org/browse/ISPN-7724
> Project: Infinispan
> Issue Type: Bug
> Components: Core
> Affects Versions: 9.0.0.Final
> Reporter: Radim Vansa
> Assignee: Radim Vansa
>
> Testcase:
> {code}
> public void testGetAllCacheEntriesWithBytes() {
> Set<String> keys = new HashSet<>();
> for (int i = 0; i < numEntries; ++i) {
> String key = "key" + i;
> advancedCache(i % numNodes).put(key, new byte[]{(byte) i});
> keys.add(key);
> }
> List<Cache<String, byte[]>> caches = caches();
> for (Cache<String, byte[]> cache : caches) {
> Map<String, CacheEntry<String, byte[]>> map = cache.getAdvancedCache().getAllCacheEntries(keys);
> assertEquals(map.size(), keys.size());
> for (int i = 0; i < numEntries; ++i) {
> CacheEntry<String, byte[]> entry = map.get("key" + i);
> assertEquals(entry.getValue().length, 1);
> assertEquals(entry.getValue()[0], i);
> }
> }
> }
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 12 months
[JBoss JIRA] (ISPN-7724) getAllCacheEntries with byte[] throws ClassCastException
by Radim Vansa (JIRA)
Radim Vansa created ISPN-7724:
---------------------------------
Summary: getAllCacheEntries with byte[] throws ClassCastException
Key: ISPN-7724
URL: https://issues.jboss.org/browse/ISPN-7724
Project: Infinispan
Issue Type: Bug
Components: Core
Affects Versions: 9.0.0.Final
Reporter: Radim Vansa
Assignee: Radim Vansa
Testcase:
{code}
public void testGetAllCacheEntriesWithBytes() {
Set<String> keys = new HashSet<>();
for (int i = 0; i < numEntries; ++i) {
String key = "key" + i;
advancedCache(i % numNodes).put(key, new byte[]{(byte) i});
keys.add(key);
}
List<Cache<String, byte[]>> caches = caches();
for (Cache<String, byte[]> cache : caches) {
Map<String, CacheEntry<String, byte[]>> map = cache.getAdvancedCache().getAllCacheEntries(keys);
assertEquals(map.size(), keys.size());
for (int i = 0; i < numEntries; ++i) {
CacheEntry<String, byte[]> entry = map.get("key" + i);
assertEquals(entry.getValue().length, 1);
assertEquals(entry.getValue()[0], i);
}
}
}
{code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 12 months