[JBoss JIRA] (ISPN-6134) # Passivations in management show the wrong value
by Martin Vrabel (JIRA)
Martin Vrabel created ISPN-6134:
-----------------------------------
Summary: # Passivations in management show the wrong value
Key: ISPN-6134
URL: https://issues.jboss.org/browse/ISPN-6134
Project: Infinispan
Issue Type: Bug
Reporter: Martin Vrabel
Page: Caches -> select cache container -> select cache.
Configuration of the cache: replicated cache, 2 nodes in the domain, eviction size=10
In the Entries lifecycle" tab, there is a field "# Passivations" which should show number of Passivations . When I put 10 entries in the cache and then another 10, this field should show 10. But it show 0
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months
[JBoss JIRA] (ISPN-6133) Number of store misses in management console is allways 0
by Martin Vrabel (JIRA)
Martin Vrabel created ISPN-6133:
-----------------------------------
Summary: Number of store misses in management console is allways 0
Key: ISPN-6133
URL: https://issues.jboss.org/browse/ISPN-6133
Project: Infinispan
Issue Type: Bug
Components: Console
Reporter: Martin Vrabel
Page: Caches -> select cache container -> select cache.
Configuration of the cache: replicated cache, 2 nodes in the domain, eviction size=10
In the "Cache loader" tab, there is a field "# Misses" which should show number of store misses . When I put 20 entries in the cache, first 10 will be evicted. When I try to read 10 non existing entries the cache store misses should be 10.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months
[JBoss JIRA] (ISPN-6131) ScriptingManager.removeScript throws ISPN026005 exception when the script exists
by Anna Manukyan (JIRA)
[ https://issues.jboss.org/browse/ISPN-6131?page=com.atlassian.jira.plugin.... ]
Anna Manukyan updated ISPN-6131:
--------------------------------
Description:
ScriptingManager.removeScript() method call with existing script name throws following exception:
org.infinispan.commons.CacheException: ISPN026005: No script named 'test.js'
at org.infinispan.scripting.impl.ScriptingManagerImpl.removeScript(ScriptingManagerImpl.java:121)
at org.infinispan.scripting.ScriptingTest.testRemovingScript(ScriptingTest.java:61)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
...
The test code is:
{code:java}
public void testRemovingScript() throws Exception {
assertNotNull(cacheManager.getCache(ScriptingManager.SCRIPT_CACHE).get("test.js"));
scriptingManager.removeScript("test.js");
assertNull(cacheManager.getCache(ScriptingManager.SCRIPT_CACHE).get("test.js"));
}
{code}
was:
ScriptingManager.removeScript() method call with existing script name throws following exception:
org.infinispan.commons.CacheException: ISPN026005: No script named 'test.js'
at org.infinispan.scripting.impl.ScriptingManagerImpl.removeScript(ScriptingManagerImpl.java:121)
at org.infinispan.scripting.ScriptingTest.testRemovingScript(ScriptingTest.java:61)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
...
> ScriptingManager.removeScript throws ISPN026005 exception when the script exists
> ---------------------------------------------------------------------------------
>
> Key: ISPN-6131
> URL: https://issues.jboss.org/browse/ISPN-6131
> Project: Infinispan
> Issue Type: Bug
> Reporter: Anna Manukyan
>
> ScriptingManager.removeScript() method call with existing script name throws following exception:
> org.infinispan.commons.CacheException: ISPN026005: No script named 'test.js'
> at org.infinispan.scripting.impl.ScriptingManagerImpl.removeScript(ScriptingManagerImpl.java:121)
> at org.infinispan.scripting.ScriptingTest.testRemovingScript(ScriptingTest.java:61)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:497)
> ...
> The test code is:
> {code:java}
> public void testRemovingScript() throws Exception {
> assertNotNull(cacheManager.getCache(ScriptingManager.SCRIPT_CACHE).get("test.js"));
> scriptingManager.removeScript("test.js");
> assertNull(cacheManager.getCache(ScriptingManager.SCRIPT_CACHE).get("test.js"));
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months
[JBoss JIRA] (ISPN-6131) ScriptingManager.removeScript throws ISPN026005 exception when the script exists
by Anna Manukyan (JIRA)
[ https://issues.jboss.org/browse/ISPN-6131?page=com.atlassian.jira.plugin.... ]
Anna Manukyan reassigned ISPN-6131:
-----------------------------------
Assignee: Tristan Tarrant
> ScriptingManager.removeScript throws ISPN026005 exception when the script exists
> ---------------------------------------------------------------------------------
>
> Key: ISPN-6131
> URL: https://issues.jboss.org/browse/ISPN-6131
> Project: Infinispan
> Issue Type: Bug
> Reporter: Anna Manukyan
> Assignee: Tristan Tarrant
>
> ScriptingManager.removeScript() method call with existing script name throws following exception:
> org.infinispan.commons.CacheException: ISPN026005: No script named 'test.js'
> at org.infinispan.scripting.impl.ScriptingManagerImpl.removeScript(ScriptingManagerImpl.java:121)
> at org.infinispan.scripting.ScriptingTest.testRemovingScript(ScriptingTest.java:61)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:497)
> ...
> The test code is:
> {code:java}
> public void testRemovingScript() throws Exception {
> assertNotNull(cacheManager.getCache(ScriptingManager.SCRIPT_CACHE).get("test.js"));
> scriptingManager.removeScript("test.js");
> assertNull(cacheManager.getCache(ScriptingManager.SCRIPT_CACHE).get("test.js"));
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months
[JBoss JIRA] (ISPN-6131) ScriptingManager.removeScript throws ISPN026005 exception when the script exists
by Anna Manukyan (JIRA)
[ https://issues.jboss.org/browse/ISPN-6131?page=com.atlassian.jira.plugin.... ]
Anna Manukyan updated ISPN-6131:
--------------------------------
Steps to Reproduce: (was:
{code:java}
public void testRemovingScript() throws Exception {
assertNotNull(cacheManager.getCache(ScriptingManager.SCRIPT_CACHE).get("test.js"));
scriptingManager.removeScript("test.js");
assertNull(cacheManager.getCache(ScriptingManager.SCRIPT_CACHE).get("test.js"));
}
{code}
)
> ScriptingManager.removeScript throws ISPN026005 exception when the script exists
> ---------------------------------------------------------------------------------
>
> Key: ISPN-6131
> URL: https://issues.jboss.org/browse/ISPN-6131
> Project: Infinispan
> Issue Type: Bug
> Reporter: Anna Manukyan
>
> ScriptingManager.removeScript() method call with existing script name throws following exception:
> org.infinispan.commons.CacheException: ISPN026005: No script named 'test.js'
> at org.infinispan.scripting.impl.ScriptingManagerImpl.removeScript(ScriptingManagerImpl.java:121)
> at org.infinispan.scripting.ScriptingTest.testRemovingScript(ScriptingTest.java:61)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:497)
> ...
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months
[JBoss JIRA] (ISPN-6131) ScriptingManager.removeScript throws ISPN026005 exception when the script exists
by Anna Manukyan (JIRA)
Anna Manukyan created ISPN-6131:
-----------------------------------
Summary: ScriptingManager.removeScript throws ISPN026005 exception when the script exists
Key: ISPN-6131
URL: https://issues.jboss.org/browse/ISPN-6131
Project: Infinispan
Issue Type: Bug
Reporter: Anna Manukyan
ScriptingManager.removeScript() method call with existing script name throws following exception:
org.infinispan.commons.CacheException: ISPN026005: No script named 'test.js'
at org.infinispan.scripting.impl.ScriptingManagerImpl.removeScript(ScriptingManagerImpl.java:121)
at org.infinispan.scripting.ScriptingTest.testRemovingScript(ScriptingTest.java:61)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
...
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months