[JBoss JIRA] (WFLY-13049) Update netty to 4.1.45.Final
by Emmanuel Hugonnet (Jira)
Emmanuel Hugonnet created WFLY-13049:
----------------------------------------
Summary: Update netty to 4.1.45.Final
Key: WFLY-13049
URL: https://issues.redhat.com/browse/WFLY-13049
Project: WildFly
Issue Type: Component Upgrade
Components: Clustering, JMS
Affects Versions: 19.0.0.Beta1
Reporter: Emmanuel Hugonnet
Assignee: Emmanuel Hugonnet
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 4 months
[JBoss JIRA] (WFLY-12093) bug in tutorial "batch-processing" with column "End Time"
by Parul Sharma (Jira)
[ https://issues.redhat.com/browse/WFLY-12093?page=com.atlassian.jira.plugi... ]
Parul Sharma commented on WFLY-12093:
-------------------------------------
Hi [~cfang],
Do you have any idea, is this issue is valid? As per my understanding, end time should not be change.
Thanks,
Parul Sharma
> bug in tutorial "batch-processing" with column "End Time"
> ---------------------------------------------------------
>
> Key: WFLY-12093
> URL: https://issues.redhat.com/browse/WFLY-12093
> Project: WildFly
> Issue Type: Bug
> Components: Quickstarts
> Environment: batch-processing
> Reporter: Святослав Кремлёв
> Assignee: Parul Sharma
> Priority: Major
> Attachments: 2019-05-18 23_16_51-Batch Processing.png
>
>
> in file
> org/jboss/as/quickstarts/batch/controller/JobData.java
> {code}
> public Date getEndTime() {
> endTime = new Date();
> return endTime.getTime() == 0 ? null : endTime;
> }
> {code}
> its returns current time every time, not the job endTime
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 4 months
[JBoss JIRA] (WFLY-13045) EAT compatibility with OpenJ9
by Panagiotis Sotiropoulos (Jira)
[ https://issues.redhat.com/browse/WFLY-13045?page=com.atlassian.jira.plugi... ]
Panagiotis Sotiropoulos commented on WFLY-13045:
------------------------------------------------
Verified with the following versions :
openjdk version "1.8.0_242"
OpenJDK Runtime Environment (build 1.8.0_242-b08)
Eclipse OpenJ9 VM (build openj9-0.18.1, JRE 1.8.0 Linux amd64-64-Bit Compressed References 20200122_511 (JIT enabled, AOT enabled)
OpenJ9 - 51a5857d2
OMR - 7a1b0239a
JCL - 8cf8a30581 based on jdk8u242-b08)
openjdk version "11.0.6" 2020-01-14
OpenJDK Runtime Environment AdoptOpenJDK (build 11.0.6+10)
Eclipse OpenJ9 VM AdoptOpenJDK (build openj9-0.18.1, JRE 11 Linux amd64-64-Bit Compressed References 20200122_441 (JIT enabled, AOT enabled)
OpenJ9 - 51a5857d2
OMR - 7a1b0239a
JCL - da35e0c380 based on jdk-11.0.6+10)
openjdk version "12.0.2" 2019-07-16
OpenJDK Runtime Environment AdoptOpenJDK (build 12.0.2+10)
Eclipse OpenJ9 VM AdoptOpenJDK (build openj9-0.15.1, JRE 12 Linux amd64-64-Bit Compressed References 20190719_151 (JIT enabled, AOT enabled)
OpenJ9 - 0f66c6431
OMR - ec782f26
JCL - 06c2cc3322 based on jdk-12.0.2+10)
openjdk version "13.0.2" 2020-01-14
OpenJDK Runtime Environment AdoptOpenJDK (build 13.0.2+8)
Eclipse OpenJ9 VM AdoptOpenJDK (build openj9-0.18.0, JRE 13 Linux amd64-64-Bit Compressed References 20200117_151 (JIT enabled, AOT enabled)
OpenJ9 - 6968c18d7
OMR - 7a1b0239a
JCL - 9c5a41bd5f based on jdk-13.0.2+8)
> EAT compatibility with OpenJ9
> -----------------------------
>
> Key: WFLY-13045
> URL: https://issues.redhat.com/browse/WFLY-13045
> Project: WildFly
> Issue Type: Task
> Components: Test Suite
> Reporter: Panagiotis Sotiropoulos
> Assignee: Panagiotis Sotiropoulos
> Priority: Major
>
> Verify EAT compatibility with OpenJ9
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 4 months
[JBoss JIRA] (DROOLS-4962) [GSS](7.z) A Spreadsheet decision tables does not convert to a DRL file correctly when a Function is being used in the RuleTable constraints
by Toni Rikkola (Jira)
[ https://issues.redhat.com/browse/DROOLS-4962?page=com.atlassian.jira.plug... ]
Toni Rikkola resolved DROOLS-4962.
----------------------------------
Resolution: Duplicate
> [GSS](7.z) A Spreadsheet decision tables does not convert to a DRL file correctly when a Function is being used in the RuleTable constraints
> --------------------------------------------------------------------------------------------------------------------------------------------
>
> Key: DROOLS-4962
> URL: https://issues.redhat.com/browse/DROOLS-4962
> Project: Drools
> Issue Type: Bug
> Components: XLS Decision Table Editor
> Reporter: Toni Rikkola
> Assignee: Toni Rikkola
> Priority: Major
> Labels: drools-tools
>
> 1. Create a "test_functions" project in the "MySpace" space.
> 2. Create a "Person" Data Object
> {code:java}
> package com.myspace.test_functions;
> /**
> * This class was automatically generated by the data modeler tool.
> */
> public class Person implements java.io.Serializable {
> static final long serialVersionUID = 1L;
> @org.kie.api.definition.type.Label("Gender")
> private java.lang.String gender;
> @org.kie.api.definition.type.Label("Is Married")
> private java.lang.Boolean married;
> @org.kie.api.definition.type.Label("Name")
> private java.lang.String name;
> @org.kie.api.definition.type.Label(value = "Message")
> private java.lang.String message;
> public Person() {
> }
> public void setHelloMsg(String arg) {
> this.message = arg;
> }
> public java.lang.String getGender() {
> return this.gender;
> }
> public void setGender(java.lang.String gender) {
> this.gender = gender;
> }
> public java.lang.Boolean getMarried() {
> return this.married;
> }
> public void setMarried(java.lang.Boolean married) {
> this.married = married;
> }
> public java.lang.String getName() {
> return this.name;
> }
> public void setName(java.lang.String name) {
> this.name = name;
> }
> public java.lang.String getMessage() {
> return this.message;
> }
> public void setMessage(java.lang.String message) {
> this.message = message;
> }
> public Person(java.lang.String gender, java.lang.Boolean married,
> java.lang.String name, java.lang.String message) {
> this.gender = gender;
> this.married = married;
> this.name = name;
> this.message = message;
> }
> }
> {code}
> 3. Import the "test_functions.xlsx"
> 4. Convert the "test_functions.xlsx"
> 5. Check the result files
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 4 months