[JBoss JIRA] (DROOLS-5102) Execute a Table with multiple input can cause NullPointerException
by Eugenio Romano (Jira)
[ https://issues.redhat.com/browse/DROOLS-5102?page=com.atlassian.jira.plug... ]
Eugenio Romano updated DROOLS-5102:
-----------------------------------
Component/s: dmn engine
> Execute a Table with multiple input can cause NullPointerException
> ------------------------------------------------------------------
>
> Key: DROOLS-5102
> URL: https://issues.redhat.com/browse/DROOLS-5102
> Project: Drools
> Issue Type: Feature Request
> Components: dmn engine
> Affects Versions: 7.33.0.Final
> Reporter: Eugenio Romano
> Assignee: Mario Fusco
> Priority: Major
> Attachments: different-all.dmn
>
>
> If you execute the DMN table in attach in the last version you will have a NullPointerException in case your input value is not matching any output.
> We are moving from version 23 to 33 and one of our tests are catching this issue
> The ProcessedExpression Class seems can be responsible of causing this NullPointerException.
> {code:java}
> this.ast = (BaseNode)tree.accept(new ASTBuilderVisitor(ctx.getInputVariableTypes(), ctx.getFEELFeelTypeRegistry()))
> {code}
> If you try with
> "inputString", "hi"
> "inputInteger", 12
> "inputBoolean", false
> "inputDate", "2019-09-26T00:00:00.000+0000"
> you can replicate the error
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 2 months
[JBoss JIRA] (DROOLS-5102) Execute a Table with multiple input can cause NullPointerException
by Eugenio Romano (Jira)
Eugenio Romano created DROOLS-5102:
--------------------------------------
Summary: Execute a Table with multiple input can cause NullPointerException
Key: DROOLS-5102
URL: https://issues.redhat.com/browse/DROOLS-5102
Project: Drools
Issue Type: Feature Request
Affects Versions: 7.33.0.Final
Reporter: Eugenio Romano
Assignee: Mario Fusco
Attachments: different-all.dmn
If you execute the DMN table in attach in the last version you will have a NullPointerException in case your input value is not matching any output.
We are moving from version 23 to 33 and one of our tests are catching this issue
The ProcessedExpression Class seems can be responsible of causing this NullPointerException.
{code:java}
this.ast = (BaseNode)tree.accept(new ASTBuilderVisitor(ctx.getInputVariableTypes(), ctx.getFEELFeelTypeRegistry()))
{code}
If you try with
"inputString", "hi"
"inputInteger", 12
"inputBoolean", false
"inputDate", "2019-09-26T00:00:00.000+0000"
you can replicate the error
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 2 months
[JBoss JIRA] (WFLY-9055) cache-type attribute of security-domain element accepts invalid values
by Ingo Weiss (Jira)
[ https://issues.redhat.com/browse/WFLY-9055?page=com.atlassian.jira.plugin... ]
Ingo Weiss reopened WFLY-9055:
------------------------------
> cache-type attribute of security-domain element accepts invalid values
> ----------------------------------------------------------------------
>
> Key: WFLY-9055
> URL: https://issues.redhat.com/browse/WFLY-9055
> Project: WildFly
> Issue Type: Bug
> Components: Security
> Affects Versions: 11.0.0.Beta1
> Reporter: Ingo Weiss
> Assignee: Ingo Weiss
> Priority: Minor
> Fix For: 11.0.0.Beta1
>
>
> What problem/issue/behavior are you having trouble with? What do you expect to see?
> It is possible to define the following without JBoss complaining:
> <subsystem xmlns="urn:jboss:domain:security:3.0">
> <security-domain name="iskv21c" cache-type="Hugo">
> [...]
> Expected behavior is that JBoss complains about invalid value "Hugo" (e.g. throws an Exception, refuses to start,..)
> According to the CLI, there are two valid options: default and infinispan
> }
> -----------------------
> [standalone@localhost:9990 /] /subsystem=security/security-domain=other:read-resource-description
> .. .. ..
> .. .. ..
> "attributes" => {"cache-type" => {
> "type" => STRING,
> "description" => "Adds a cache to speed up authentication checks. Allowed values are 'default' to use simple map as the cache and 'infinispan' to use an Infinispan cache.",
> "expressions-allowed" => true,
> "required" => false,
> "nillable" => true,
> "min-length" => 1L,
> "max-length" => 2147483647L,
> "allowed" => [
> "default",
> "infinispan"
> ],
> "access-type" => "read-write",
> "storage" => "configuration",
> "restart-required" => "no-services"
> }},
> -----------------------
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 2 months
[JBoss JIRA] (WFLY-9055) cache-type attribute of security-domain element accepts invalid values
by Ingo Weiss (Jira)
[ https://issues.redhat.com/browse/WFLY-9055?page=com.atlassian.jira.plugin... ]
Ingo Weiss updated WFLY-9055:
-----------------------------
Description:
What problem/issue/behavior are you having trouble with? What do you expect to see?
It is possible to define the following without JBoss complaining:
<subsystem xmlns="urn:jboss:domain:security:3.0">
<security-domain name="xxxxx" cache-type="yyyy">
[...]
Expected behavior is that JBoss complains about invalid value "yyyy" (e.g. throws an Exception, refuses to start,..)
According to the CLI, there are two valid options: default and infinispan
}
-----------------------
[standalone@localhost:9990 /] /subsystem=security/security-domain=other:read-resource-description
.. .. ..
.. .. ..
"attributes" => {"cache-type" => {
"type" => STRING,
"description" => "Adds a cache to speed up authentication checks. Allowed values are 'default' to use simple map as the cache and 'infinispan' to use an Infinispan cache.",
"expressions-allowed" => true,
"required" => false,
"nillable" => true,
"min-length" => 1L,
"max-length" => 2147483647L,
"allowed" => [
"default",
"infinispan"
],
"access-type" => "read-write",
"storage" => "configuration",
"restart-required" => "no-services"
}},
-----------------------
was:
What problem/issue/behavior are you having trouble with? What do you expect to see?
It is possible to define the following without JBoss complaining:
<subsystem xmlns="urn:jboss:domain:security:3.0">
<security-domain name="iskv21c" cache-type="Hugo">
[...]
Expected behavior is that JBoss complains about invalid value "Hugo" (e.g. throws an Exception, refuses to start,..)
According to the CLI, there are two valid options: default and infinispan
}
-----------------------
[standalone@localhost:9990 /] /subsystem=security/security-domain=other:read-resource-description
.. .. ..
.. .. ..
"attributes" => {"cache-type" => {
"type" => STRING,
"description" => "Adds a cache to speed up authentication checks. Allowed values are 'default' to use simple map as the cache and 'infinispan' to use an Infinispan cache.",
"expressions-allowed" => true,
"required" => false,
"nillable" => true,
"min-length" => 1L,
"max-length" => 2147483647L,
"allowed" => [
"default",
"infinispan"
],
"access-type" => "read-write",
"storage" => "configuration",
"restart-required" => "no-services"
}},
-----------------------
> cache-type attribute of security-domain element accepts invalid values
> ----------------------------------------------------------------------
>
> Key: WFLY-9055
> URL: https://issues.redhat.com/browse/WFLY-9055
> Project: WildFly
> Issue Type: Bug
> Components: Security
> Affects Versions: 11.0.0.Beta1
> Reporter: Ingo Weiss
> Assignee: Ingo Weiss
> Priority: Minor
> Fix For: 11.0.0.Beta1
>
>
> What problem/issue/behavior are you having trouble with? What do you expect to see?
> It is possible to define the following without JBoss complaining:
> <subsystem xmlns="urn:jboss:domain:security:3.0">
> <security-domain name="xxxxx" cache-type="yyyy">
> [...]
> Expected behavior is that JBoss complains about invalid value "yyyy" (e.g. throws an Exception, refuses to start,..)
> According to the CLI, there are two valid options: default and infinispan
> }
> -----------------------
> [standalone@localhost:9990 /] /subsystem=security/security-domain=other:read-resource-description
> .. .. ..
> .. .. ..
> "attributes" => {"cache-type" => {
> "type" => STRING,
> "description" => "Adds a cache to speed up authentication checks. Allowed values are 'default' to use simple map as the cache and 'infinispan' to use an Infinispan cache.",
> "expressions-allowed" => true,
> "required" => false,
> "nillable" => true,
> "min-length" => 1L,
> "max-length" => 2147483647L,
> "allowed" => [
> "default",
> "infinispan"
> ],
> "access-type" => "read-write",
> "storage" => "configuration",
> "restart-required" => "no-services"
> }},
> -----------------------
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 2 months
[JBoss JIRA] (DROOLS-5101) rhdm 7 (v 7.5.1; eap 7.2; Drools 7.26; windows 10) FAIL - OutOfMemoryError
by Charles Herrick (Jira)
Charles Herrick created DROOLS-5101:
---------------------------------------
Summary: rhdm 7 (v 7.5.1; eap 7.2; Drools 7.26; windows 10) FAIL - OutOfMemoryError
Key: DROOLS-5101
URL: https://issues.redhat.com/browse/DROOLS-5101
Project: Drools
Issue Type: Bug
Components: core engine
Affects Versions: 7.26.0.Final
Reporter: Charles Herrick
Assignee: Mario Fusco
09:13:02,818 ERROR [org.kie.workbench.common.services.backend.builder.core.Builder] (default task-95) GC overhead limit exceeded: java.lang.OutOfMemoryError: GC overhead limit exceeded
09:13:05,335 ERROR [stderr] (default task-95) java.lang.OutOfMemoryError: GC overhead limit exceeded
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 2 months
[JBoss JIRA] (WFLY-13149) Add Microprofile Subcategory in EAT
by Panagiotis Sotiropoulos (Jira)
Panagiotis Sotiropoulos created WFLY-13149:
----------------------------------------------
Summary: Add Microprofile Subcategory in EAT
Key: WFLY-13149
URL: https://issues.redhat.com/browse/WFLY-13149
Project: WildFly
Issue Type: Task
Components: Test Suite
Reporter: Panagiotis Sotiropoulos
Assignee: Panagiotis Sotiropoulos
Addition of microprofile subcategory in EAT (enablement done using -Dmpf param)
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 2 months
[JBoss JIRA] (WFLY-13148) Add Microprofile Subcategory in EAT
by Panagiotis Sotiropoulos (Jira)
Panagiotis Sotiropoulos created WFLY-13148:
----------------------------------------------
Summary: Add Microprofile Subcategory in EAT
Key: WFLY-13148
URL: https://issues.redhat.com/browse/WFLY-13148
Project: WildFly
Issue Type: Task
Components: Test Suite
Reporter: Panagiotis Sotiropoulos
Assignee: Panagiotis Sotiropoulos
Addition of microprofile subcategory in EAT (enablement done using -Dmpf param)
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 2 months
[JBoss JIRA] (DROOLS-5096) [DMN Decision] Properties: Increase Question max length
by Jozef Marko (Jira)
[ https://issues.redhat.com/browse/DROOLS-5096?page=com.atlassian.jira.plug... ]
Jozef Marko updated DROOLS-5096:
--------------------------------
Description:
As a user, I want to type a long question in the DMN decision properties, so I can fully describe and document my decision requirement for future reference.
Example:
I want to set the following question for my decision:
"Based on self-reported borrower income, credit score, loan amount, what is the likely eligibility for a mortgage?"
The current work around is to rephrase my question so it can fit in a max length of 100 characters.
h2. Acceptance test
- Put long question, save and reopen (/)
- Check rendering in properties panel - Chrome, Firefox, VSCode (/)
was:
As a user, I want to type a long question in the DMN decision properties, so I can fully describe and document my decision requirement for future reference.
Example:
I want to set the following question for my decision:
"Based on self-reported borrower income, credit score, loan amount, what is the likely eligibility for a mortgage?"
The current work around is to rephrase my question so it can fit in a max length of 100 characters.
h2. Acceptance test
- Put long question, save and reopen
- Check rendering in properties panel - Chrome, Firefox, VSCode
> [DMN Decision] Properties: Increase Question max length
> -------------------------------------------------------
>
> Key: DROOLS-5096
> URL: https://issues.redhat.com/browse/DROOLS-5096
> Project: Drools
> Issue Type: Enhancement
> Components: DMN Editor
> Affects Versions: 7.33.0.Final
> Reporter: Michael Anstis
> Assignee: Michael Anstis
> Priority: Major
> Labels: drools-tools
>
> As a user, I want to type a long question in the DMN decision properties, so I can fully describe and document my decision requirement for future reference.
> Example:
> I want to set the following question for my decision:
> "Based on self-reported borrower income, credit score, loan amount, what is the likely eligibility for a mortgage?"
> The current work around is to rephrase my question so it can fit in a max length of 100 characters.
> h2. Acceptance test
> - Put long question, save and reopen (/)
> - Check rendering in properties panel - Chrome, Firefox, VSCode (/)
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 2 months