[JBoss JIRA] (DROOLS-2244) DMN: time(date("2017-08-10")) should return 00:00:00z time
by Lukáš Petrovický (JIRA)
Lukáš Petrovický created DROOLS-2244:
----------------------------------------
Summary: DMN: time(date("2017-08-10")) should return 00:00:00z time
Key: DROOLS-2244
URL: https://issues.jboss.org/browse/DROOLS-2244
Project: Drools
Issue Type: Bug
Components: dmn engine
Affects Versions: 7.5.0.Final
Reporter: Lukáš Petrovický
Assignee: Tibor Zimányi
According to the specification in section "10.3.2.3.5 date":
"Where necessary, including the valuedt function (see 10.3.2.x.6), a date value is considered to be equivalent to a date time value in which the time of day is UTC midnight (00:00:00)."
Currently the case time(date("2017-08-10")) returns null, because the evaluation ends with DateTimeException, because internally we represent dates as LocalDate class, which doesn't have time part.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (WFLY-8913) It is not possible to add cache store in infinispan subsystem
by Maxim Karavaev (JIRA)
[ https://issues.jboss.org/browse/WFLY-8913?page=com.atlassian.jira.plugin.... ]
Maxim Karavaev commented on WFLY-8913:
--------------------------------------
I am confused. I'm just download the last version *WildFly Full 11.0.0.Final (WildFly Core 3.0.8.Final)* and got this error:
{noformat}
[standalone@localhost:9990 /] /subsystem=infinispan/cache-container=hibernate/local-cache=foobar1:add()
{"outcome" => "success"}
[standalone@localhost:9990 /] /subsystem=infinispan/cache-container=hibernate/local-cache=foobar1/store=STORE:add(class="org.infinispan.configuration.cache.SingleFileStoreConfigurationBuilder")
{
"outcome" => "failed",
"failure-description" => "WFLYCTL0158: Operation handler failed: org.jboss.msc.service.DuplicateServiceException: Service org.wildfly.clustering.infinispan.cache.store.hibernate.foobar1 is already registered",
"rolled-back" => true
}
{noformat}
Does it fixed or not? And in which version?
> It is not possible to add cache store in infinispan subsystem
> -------------------------------------------------------------
>
> Key: WFLY-8913
> URL: https://issues.jboss.org/browse/WFLY-8913
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 11.0.0.Alpha1
> Reporter: Paul Ferraro
> Assignee: Paul Ferraro
> Fix For: 11.0.0.Beta1
>
>
> Adding cache store to already created cache ends by failure even if it should succeed:
> {code}
> [standalone@localhost:9990 /] /subsystem=infinispan/cache-container=hibernate/invalidation-cache=foobar/store=STORE:add(class="org.infinispan.configuration.cache.SingleFileStoreConfigurationBuilder")
> {
> "outcome" => "failed",
> "failure-description" => "WFLYCTL0158: Operation handler failed: org.jboss.msc.service.DuplicateServiceException: Service org.wildfly.clustering.infinispan.cache.store.hibernate.foobar is already registered",
> "rolled-back" => true
> }
> {code}
> This is a regression against 7.1.0.DR18.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (WFLY-9675) cannot disable 'max-post-size' check for undertow listeners
by Chao Wang (JIRA)
[ https://issues.jboss.org/browse/WFLY-9675?page=com.atlassian.jira.plugin.... ]
Chao Wang updated WFLY-9675:
----------------------------
Git Pull Request: https://github.com/wildfly/wildfly/pull/10756
> cannot disable 'max-post-size' check for undertow listeners
> -----------------------------------------------------------
>
> Key: WFLY-9675
> URL: https://issues.jboss.org/browse/WFLY-9675
> Project: WildFly
> Issue Type: Bug
> Components: Web (Undertow)
> Affects Versions: 11.0.0.Final
> Reporter: Chao Wang
> Assignee: Chao Wang
> Priority: Minor
>
> With EAP7.1.0.GA, there has been added a validator for 'max-post-size' attribute for listeners in undertow subsystem. This validator requires positive integer values starting with value 1. That means, you cannot disable 'max-post-size' for such listener using 0 value anymore.
> In EAP6.4 and EAP7.0, it was possible to disable 'max-post-size' check with 0 value. I understand that we might not want to allow user to set this to 0 value as it might be a potentional security risk. Still, maybe we should relax this restriction as it was possible to configure it that way in previous versions of EAP.
> Also there is a [Knowledge Base article|https://access.redhat.com/solutions/714173] regarding to this feature, which we should update in case we won't reconsider our position.
> Just for the record - quoting question from mailing list:
> {quote}
> Dear Experts,
> Based on KCS, the "max-post-size" in "http-listener" from "undertow" subsystem can be disabled by setting "0" to it, it worked for EAP 6.x and 7.0 GA.
> But in EAP 7.1.0 GA, it didn't work:
> ~~~
> [standalone@localhost:9990 /] /subsystem=undertow/server=default-server/http-listener=default/:write-attribute(name=max-post-size,value=0)
> {
> "outcome" => "failed",
> "failure-description" => "WFLYCTL0117: 0 is an invalid value for parameter max-post-size. A minimum value of 1 is required",
> "rolled-back" => true
> }
> ~~~
> By comparing schemas:
> ~~~
> jboss-eap-7.0/docs/schema/wildfly-undertow_x_x.xsd:
> <xs:attribute name="max-post-size" type="xs:long" default="0"/>
> ---
> jboss-eap-7.1/docs/schema/wildfly-undertow_x_x.xsd:
> <xs:attribute name="max-post-size" type="xs:long" default="10485760"/>
> ~~~
> The behaviour changed.
> And I found WFLY-6437 and JBEAP-3974, but failed to open links inside those.
> So can I ask if "max-post-size" can be disabled in EAP 7.1.0 GA and the reason if possible?
> Best Regards,
> Zhang Xu
> {quote}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (WFLY-9675) cannot disable 'max-post-size' check for undertow listeners
by Chao Wang (JIRA)
[ https://issues.jboss.org/browse/WFLY-9675?page=com.atlassian.jira.plugin.... ]
Chao Wang moved JBEAP-14096 to WFLY-9675:
-----------------------------------------
Project: WildFly (was: JBoss Enterprise Application Platform)
Key: WFLY-9675 (was: JBEAP-14096)
Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1)
Component/s: Web (Undertow)
(was: Web (Undertow))
Affects Version/s: 11.0.0.Final
(was: 7.1.0.GA)
> cannot disable 'max-post-size' check for undertow listeners
> -----------------------------------------------------------
>
> Key: WFLY-9675
> URL: https://issues.jboss.org/browse/WFLY-9675
> Project: WildFly
> Issue Type: Bug
> Components: Web (Undertow)
> Affects Versions: 11.0.0.Final
> Reporter: Chao Wang
> Assignee: Chao Wang
> Priority: Minor
>
> With EAP7.1.0.GA, there has been added a validator for 'max-post-size' attribute for listeners in undertow subsystem. This validator requires positive integer values starting with value 1. That means, you cannot disable 'max-post-size' for such listener using 0 value anymore.
> In EAP6.4 and EAP7.0, it was possible to disable 'max-post-size' check with 0 value. I understand that we might not want to allow user to set this to 0 value as it might be a potentional security risk. Still, maybe we should relax this restriction as it was possible to configure it that way in previous versions of EAP.
> Also there is a [Knowledge Base article|https://access.redhat.com/solutions/714173] regarding to this feature, which we should update in case we won't reconsider our position.
> Just for the record - quoting question from mailing list:
> {quote}
> Dear Experts,
> Based on KCS, the "max-post-size" in "http-listener" from "undertow" subsystem can be disabled by setting "0" to it, it worked for EAP 6.x and 7.0 GA.
> But in EAP 7.1.0 GA, it didn't work:
> ~~~
> [standalone@localhost:9990 /] /subsystem=undertow/server=default-server/http-listener=default/:write-attribute(name=max-post-size,value=0)
> {
> "outcome" => "failed",
> "failure-description" => "WFLYCTL0117: 0 is an invalid value for parameter max-post-size. A minimum value of 1 is required",
> "rolled-back" => true
> }
> ~~~
> By comparing schemas:
> ~~~
> jboss-eap-7.0/docs/schema/wildfly-undertow_x_x.xsd:
> <xs:attribute name="max-post-size" type="xs:long" default="0"/>
> ---
> jboss-eap-7.1/docs/schema/wildfly-undertow_x_x.xsd:
> <xs:attribute name="max-post-size" type="xs:long" default="10485760"/>
> ~~~
> The behaviour changed.
> And I found WFLY-6437 and JBEAP-3974, but failed to open links inside those.
> So can I ask if "max-post-size" can be disabled in EAP 7.1.0 GA and the reason if possible?
> Best Regards,
> Zhang Xu
> {quote}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months