[JBoss JIRA] (DROOLS-2513) Add support for embedded test execution
by Edson Tirelli (JIRA)
Edson Tirelli created DROOLS-2513:
-------------------------------------
Summary: Add support for embedded test execution
Key: DROOLS-2513
URL: https://issues.jboss.org/browse/DROOLS-2513
Project: Drools
Issue Type: Enhancement
Components: dmn engine
Affects Versions: 7.7.0.Final
Reporter: Edson Tirelli
Assignee: Edson Tirelli
Fix For: 7.8.0.Final
TCK test cases can be embedded in the DMN model under the extension elements (e.g., see Trisotech generated models).
Add a public API to allow execution of embedded test cases.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
6 years, 8 months
[JBoss JIRA] (DROOLS-2512) Add support for multi-file validation on the DMN Validator
by Edson Tirelli (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2512?page=com.atlassian.jira.plugi... ]
Edson Tirelli commented on DROOLS-2512:
---------------------------------------
[~fedor.gavrilov] , to implement this enhancement you will need to discuss/coordinate with [~tari_manga] , as he has the details of the "import" implementation.
> Add support for multi-file validation on the DMN Validator
> ----------------------------------------------------------
>
> Key: DROOLS-2512
> URL: https://issues.jboss.org/browse/DROOLS-2512
> Project: Drools
> Issue Type: Enhancement
> Components: dmn engine
> Affects Versions: 7.7.0.Final
> Reporter: Edson Tirelli
> Assignee: Fedor Gavrilov
> Fix For: 7.8.0.Final
>
>
> Currently the DMN validator supports only single file validation, but with the implementation of support for "import" we now have to add support for multi-file validation as well.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
6 years, 8 months
[JBoss JIRA] (DROOLS-2512) Add support for multi-file validation on the DMN Validator
by Edson Tirelli (JIRA)
Edson Tirelli created DROOLS-2512:
-------------------------------------
Summary: Add support for multi-file validation on the DMN Validator
Key: DROOLS-2512
URL: https://issues.jboss.org/browse/DROOLS-2512
Project: Drools
Issue Type: Enhancement
Components: dmn engine
Affects Versions: 7.7.0.Final
Reporter: Edson Tirelli
Assignee: Edson Tirelli
Fix For: 7.8.0.Final
Currently the DMN validator supports only single file validation, but with the implementation of support for "import" we now have to add support for multi-file validation as well.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
6 years, 8 months
[JBoss JIRA] (WFLY-10260) NullPointerException when read deployment with jpa
by Gail Badner (JIRA)
[ https://issues.jboss.org/browse/WFLY-10260?page=com.atlassian.jira.plugin... ]
Gail Badner edited comment on WFLY-10260 at 4/30/18 8:13 PM:
-------------------------------------------------------------
This will be fixed by Hibernate ORM 5.1 by:
https://hibernate.atlassian.net/browse/HHH-12520
This will be fixed in Hibernate ORM 5.3 by:
https://hibernate.atlassian.net/browse/HHH-12508
The following fixes a related bug in Hibernate ORM 5.3 that results in an exception thrown when the 2nd-level cache is enabled, but the query cache is not enabled:
https://hibernate.atlassian.net/browse/HHH-12529
was (Author: gbadner):
This will be fixed by Hibernate ORM 5.1 by:
https://hibernate.atlassian.net/browse/HHH-12529
This will be fixed in Hibernate ORM 5.3 by:
https://hibernate.atlassian.net/browse/HHH-12508
The following fixes a related bug in Hibernate ORM 5.3 that results in an exception thrown when the 2nd-level cache is enabled, but the query cache is not enabled:
https://hibernate.atlassian.net/browse/HHH-12520
> NullPointerException when read deployment with jpa
> --------------------------------------------------
>
> Key: WFLY-10260
> URL: https://issues.jboss.org/browse/WFLY-10260
> Project: WildFly
> Issue Type: Bug
> Components: JPA / Hibernate
> Reporter: Claudio Miranda
> Assignee: Gail Badner
> Fix For: 13.0.0.Beta1
>
> Attachments: wildfly-kitchensink.war
>
>
> There is a bug when reading deployment information with runtime and recursive.
> Looks like this is a regression from an older bug WFLY-1753
> {code}
> /host=master/server=server-three/deployment=kitchensink.war/subsystem=jpa:read-resource(include-runtime,recursive)
> {code}
> {code}
> [Server:server-three] 12:16:11,551 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 75) WFLYCTL0013: Operation ("read-attribute") failed - address: ([
> [Server:server-three] ("deployment" => "kitchensink.war"),
> [Server:server-three] ("subsystem" => "jpa"),
> [Server:server-three] ("hibernate-persistence-unit" => "kitchensink.war#primary"),
> [Server:server-three] ("entity-cache" => "org.jboss.as.quickstarts.kitchensink.model.Member")
> [Server:server-three] ]): java.lang.NullPointerException
> [Server:server-three] at org.hibernate.internal.CacheImpl.getSecondLevelCacheRegion(CacheImpl.java:376)
> [Server:server-three] at org.hibernate.internal.SessionFactoryImpl.getSecondLevelCacheRegion(SessionFactoryImpl.java:1171)
> [Server:server-three] at org.hibernate.stat.internal.ConcurrentStatisticsImpl.getSecondLevelCacheStatistics(ConcurrentStatisticsImpl.java:334)
> [Server:server-three] at org.jboss.as.jpa.hibernate5.management.HibernateEntityCacheStatistics.getStatistics(HibernateEntityCacheStatistics.java:94)
> [Server:server-three] at org.jboss.as.jpa.hibernate5.management.HibernateEntityCacheStatistics$4.invoke(HibernateEntityCacheStatistics.java:126)
> [Server:server-three] at org.jboss.as.jpa.hibernate5.management.HibernateAbstractStatistics.getValue(HibernateAbstractStatistics.java:99)
> [Server:server-three] at org.jboss.as.jpa.management.ManagementResourceDefinition$1.handle(ManagementResourceDefinition.java:130)
> [Server:server-three] at org.jboss.as.jpa.management.ManagementResourceDefinition$AbstractMetricsHandler.executeRuntimeStep(ManagementResourceDefinition.java:268)
> [Server:server-three] at org.jboss.as.controller.AbstractRuntimeOnlyHandler$1.execute(AbstractRuntimeOnlyHandler.java:59)
> [Server:server-three] at org.jboss.as.controller.AbstractOperationContext.executeStep(AbstractOperationContext.java:982)
> [Server:server-three] at org.jboss.as.controller.AbstractOperationContext.processStages(AbstractOperationContext.java:726)
> [Server:server-three] at org.jboss.as.controller.AbstractOperationContext.executeOperation(AbstractOperationContext.java:450)
> [Server:server-three] at org.jboss.as.controller.OperationContextImpl.executeOperation(OperationContextImpl.java:1408)
> [Server:server-three] at org.jboss.as.controller.ModelControllerImpl.internalExecute(ModelControllerImpl.java:423)
> [Server:server-three] at org.jboss.as.controller.ModelControllerImpl.lambda$execute$1(ModelControllerImpl.java:243)
> [Server:server-three] at org.wildfly.security.auth.server.SecurityIdentity.runAs(SecurityIdentity.java:263)
> [Server:server-three] at org.wildfly.security.auth.server.SecurityIdentity.runAs(SecurityIdentity.java:229)
> [Server:server-three] at org.jboss.as.controller.ModelControllerImpl.execute(ModelControllerImpl.java:243)
> [Server:server-three] at org.jboss.as.controller.remote.TransactionalProtocolOperationHandler.internalExecute(TransactionalProtocolOperationHandler.java:249)
> [Server:server-three] at org.jboss.as.controller.remote.TransactionalProtocolOperationHandler$ExecuteRequestHandler.doExecute(TransactionalProtocolOperationHandler.java:190)
> [Server:server-three] at org.jboss.as.controller.remote.TransactionalProtocolOperationHandler$ExecuteRequestHandler$1.run(TransactionalProtocolOperationHandler.java:143)
> [Server:server-three] at org.jboss.as.controller.remote.TransactionalProtocolOperationHandler$ExecuteRequestHandler$1.run(TransactionalProtocolOperationHandler.java:139)
> [Server:server-three] at org.wildfly.security.auth.server.SecurityIdentity.runAs(SecurityIdentity.java:263)
> [Server:server-three] at org.wildfly.security.auth.server.SecurityIdentity.runAs(SecurityIdentity.java:229)
> [Server:server-three] at org.jboss.as.controller.AccessAuditContext.doAs(AccessAuditContext.java:198)
> [Server:server-three] at org.jboss.as.controller.remote.TransactionalProtocolOperationHandler$ExecuteRequestHandler$2$1.run(TransactionalProtocolOperationHandler.java:162)
> [Server:server-three] at org.jboss.as.controller.remote.TransactionalProtocolOperationHandler$ExecuteRequestHandler$2$1.run(TransactionalProtocolOperationHandler.java:158)
> [Server:server-three] at java.security.AccessController.doPrivileged(Native Method)
> [Server:server-three] at org.jboss.as.controller.remote.TransactionalProtocolOperationHandler$ExecuteRequestHandler$2.execute(TransactionalProtocolOperationHandler.java:158)
> [Server:server-three] at org.jboss.as.protocol.mgmt.ManagementRequestContextImpl$1.doExecute(ManagementRequestContextImpl.java:70)
> [Server:server-three] at org.jboss.as.protocol.mgmt.ManagementRequestContextImpl$AsyncTaskRunner.run(ManagementRequestContextImpl.java:160)
> [Server:server-three] at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
> [Server:server-three] at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
> [Server:server-three] at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
> [Server:server-three] at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378)
> [Server:server-three] at java.lang.Thread.run(Thread.java:748)
> [Server:server-three] at org.jboss.threads.JBossThread.run(JBossThread.java:485)
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
6 years, 8 months