[JBoss JIRA] (ISPN-6263) Cannot create a template without inheritance
by Tristan Tarrant (JIRA)
Tristan Tarrant created ISPN-6263:
-------------------------------------
Summary: Cannot create a template without inheritance
Key: ISPN-6263
URL: https://issues.jboss.org/browse/ISPN-6263
Project: Infinispan
Issue Type: Bug
Components: Console
Reporter: Tristan Tarrant
Assignee: Vladimir Blagojevic
It is not possible to create a root template (i.e. a template which doesn't inherit from another template)
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 1 month
[JBoss JIRA] (ISPN-6262) Make parallel build passing
by Sebastian Łaskawiec (JIRA)
Sebastian Łaskawiec created ISPN-6262:
-----------------------------------------
Summary: Make parallel build passing
Key: ISPN-6262
URL: https://issues.jboss.org/browse/ISPN-6262
Project: Infinispan
Issue Type: Bug
Reporter: Sebastian Łaskawiec
Assignee: Sebastian Łaskawiec
Priority: Trivial
At the moment parallel build {{./build.sh clean install -DskipTests -T4}} often fails. It would be nice to fix it and make building much faster.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 1 month
[JBoss JIRA] (ISPN-6132) Mark Spring dependencies are provided
by Sebastian Łaskawiec (JIRA)
[ https://issues.jboss.org/browse/ISPN-6132?page=com.atlassian.jira.plugin.... ]
Sebastian Łaskawiec updated ISPN-6132:
--------------------------------------
Description:
After splitting Spring into 2 modules (embedded and remote) and introducing Uber jars, it is very easy to hit an error like this:
{code}
java.lang.NoSuchMethodError: org.infinispan.commons.logging.BasicLogFactory.getLog(Ljava/lang/Class;)Linfinispan/org/jboss/logging/BasicLogger;
{code}
It turns out that Wildfly ships its own JBoss Modules [1] and it conflicts the relocated one from Uber Jars.
The easiest fix for it is to make all Spring module dependencies provided.
[1] https://docs.jboss.org/author/display/AS7/Implicit+module+dependencies+fo...
> Mark Spring dependencies are provided
> -------------------------------------
>
> Key: ISPN-6132
> URL: https://issues.jboss.org/browse/ISPN-6132
> Project: Infinispan
> Issue Type: Enhancement
> Components: Spring Integration
> Reporter: Sebastian Łaskawiec
> Assignee: Sebastian Łaskawiec
>
> After splitting Spring into 2 modules (embedded and remote) and introducing Uber jars, it is very easy to hit an error like this:
> {code}
> java.lang.NoSuchMethodError: org.infinispan.commons.logging.BasicLogFactory.getLog(Ljava/lang/Class;)Linfinispan/org/jboss/logging/BasicLogger;
> {code}
> It turns out that Wildfly ships its own JBoss Modules [1] and it conflicts the relocated one from Uber Jars.
> The easiest fix for it is to make all Spring module dependencies provided.
> [1] https://docs.jboss.org/author/display/AS7/Implicit+module+dependencies+fo...
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 1 month
[JBoss JIRA] (ISPN-6261) CLI fails on secured caches
by Vojtech Juranek (JIRA)
[ https://issues.jboss.org/browse/ISPN-6261?page=com.atlassian.jira.plugin.... ]
Vojtech Juranek updated ISPN-6261:
----------------------------------
Status: Open (was: New)
> CLI fails on secured caches
> ---------------------------
>
> Key: ISPN-6261
> URL: https://issues.jboss.org/browse/ISPN-6261
> Project: Infinispan
> Issue Type: Bug
> Components: CLI, Security
> Reporter: Vojtech Juranek
> Assignee: Vojtech Juranek
>
> When running CLI on secured caches, it fails with exception bellow. This exception is quite confusing, as user has properly defined ADMIN permission on given cache. What is actually happening is that some operation, like statistics, called by CLI, iterates over all defined caches, including internal caches, and user hasn't required permission on all these caches (in this case on internal script cache)
> {noformat}
> 00:04:23,563 ERROR [org.jboss.as.controller.management-operation] (management-handler-thread - 1) WFLYCTL0013: Operation ("read-attribute") failed - address: ([
> ("subsystem" => "datagrid-infinispan"),
> ("cache-container" => "local")
> ]): java.lang.SecurityException: ISPN000287: Unauthorized access: subject 'Subject with principal(s): [user@ManagementRealm, admin@ManagementRealm, admin, org.jboss.remoting3.security.UserPrincipal@36ebcb, InetAddressPrincipal <127.0.0.1/127.0.0.1>, InetAddressPrincipal <127.0.0.1/127.0.0.1>]' lacks 'ADMIN' permission
> at org.infinispan.security.impl.AuthorizationHelper.checkPermission(AuthorizationHelper.java:86)
> at org.infinispan.security.impl.AuthorizationManagerImpl.checkPermission(AuthorizationManagerImpl.java:37)
> at org.infinispan.security.impl.SecureCacheImpl.getStats(SecureCacheImpl.java:567)
> at org.infinispan.stats.impl.CacheContainerStatsImpl.calculateAverageRemoveTime(CacheContainerStatsImpl.java:131)
> at org.infinispan.stats.impl.CacheContainerStatsImpl.getAverageRemoveTime(CacheContainerStatsImpl.java:121)
> at org.jboss.as.clustering.infinispan.subsystem.CacheContainerMetricsHandler.executeRuntimeStep(CacheContainerMetricsHandler.java:196)
> at org.jboss.as.controller.AbstractRuntimeOnlyHandler$1.execute(AbstractRuntimeOnlyHandler.java:53)
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 1 month
[JBoss JIRA] (ISPN-6261) CLI fails on secured caches
by Vojtech Juranek (JIRA)
[ https://issues.jboss.org/browse/ISPN-6261?page=com.atlassian.jira.plugin.... ]
Vojtech Juranek updated ISPN-6261:
----------------------------------
Status: Pull Request Sent (was: Open)
Git Pull Request: https://github.com/infinispan/infinispan/pull/4037
> CLI fails on secured caches
> ---------------------------
>
> Key: ISPN-6261
> URL: https://issues.jboss.org/browse/ISPN-6261
> Project: Infinispan
> Issue Type: Bug
> Components: CLI, Security
> Reporter: Vojtech Juranek
> Assignee: Vojtech Juranek
>
> When running CLI on secured caches, it fails with exception bellow. This exception is quite confusing, as user has properly defined ADMIN permission on given cache. What is actually happening is that some operation, like statistics, called by CLI, iterates over all defined caches, including internal caches, and user hasn't required permission on all these caches (in this case on internal script cache)
> {noformat}
> 00:04:23,563 ERROR [org.jboss.as.controller.management-operation] (management-handler-thread - 1) WFLYCTL0013: Operation ("read-attribute") failed - address: ([
> ("subsystem" => "datagrid-infinispan"),
> ("cache-container" => "local")
> ]): java.lang.SecurityException: ISPN000287: Unauthorized access: subject 'Subject with principal(s): [user@ManagementRealm, admin@ManagementRealm, admin, org.jboss.remoting3.security.UserPrincipal@36ebcb, InetAddressPrincipal <127.0.0.1/127.0.0.1>, InetAddressPrincipal <127.0.0.1/127.0.0.1>]' lacks 'ADMIN' permission
> at org.infinispan.security.impl.AuthorizationHelper.checkPermission(AuthorizationHelper.java:86)
> at org.infinispan.security.impl.AuthorizationManagerImpl.checkPermission(AuthorizationManagerImpl.java:37)
> at org.infinispan.security.impl.SecureCacheImpl.getStats(SecureCacheImpl.java:567)
> at org.infinispan.stats.impl.CacheContainerStatsImpl.calculateAverageRemoveTime(CacheContainerStatsImpl.java:131)
> at org.infinispan.stats.impl.CacheContainerStatsImpl.getAverageRemoveTime(CacheContainerStatsImpl.java:121)
> at org.jboss.as.clustering.infinispan.subsystem.CacheContainerMetricsHandler.executeRuntimeStep(CacheContainerMetricsHandler.java:196)
> at org.jboss.as.controller.AbstractRuntimeOnlyHandler$1.execute(AbstractRuntimeOnlyHandler.java:53)
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 1 month