[JBoss JIRA] (WFCORE-3555) Pipe with echo commad gives incorrect result
by Katerina Novotna (JIRA)
Katerina Novotna created WFCORE-3555:
----------------------------------------
Summary: Pipe with echo commad gives incorrect result
Key: WFCORE-3555
URL: https://issues.jboss.org/browse/WFCORE-3555
Project: WildFly Core
Issue Type: Bug
Components: CLI
Reporter: Katerina Novotna
Assignee: Jean-Francois Denise
*Description of problem:*
When putting 'echo' into the right side of the pipe. Addional 'o' is displayed as result.
*Actual results:*
[standalone@embedded /] version | echo test
o test
*Expected results:*
[standalone@embedded /] version | echo test
test
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (WFCORE-3554) Append the content to the file with name tmp|file results to 'tmp\|file' being created
by Katerina Novotna (JIRA)
Katerina Novotna created WFCORE-3554:
----------------------------------------
Summary: Append the content to the file with name tmp|file results to 'tmp\|file' being created
Key: WFCORE-3554
URL: https://issues.jboss.org/browse/WFCORE-3554
Project: WildFly Core
Issue Type: Bug
Components: CLI
Reporter: Katerina Novotna
Assignee: Jean-Francois Denise
*Description of problem:*
Append the content to the file with name tmp|file results to 'tmp\|file' being created.
*Actual results:*
[standalone@embedded /] version >> tmp\|file
The file created is named 'tmp\|file'
*Expected results:*
The file created is named 'tmp|file'
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (WFLY-9737) JASPIC LoginModule Profile with WildFly Elytron
by Darran Lofthouse (JIRA)
Darran Lofthouse created WFLY-9737:
--------------------------------------
Summary: JASPIC LoginModule Profile with WildFly Elytron
Key: WFLY-9737
URL: https://issues.jboss.org/browse/WFLY-9737
Project: WildFly
Issue Type: Feature Request
Components: Security
Reporter: Darran Lofthouse
Assignee: Darran Lofthouse
Fix For: 12.0.0.Alpha1
The JASPIC specification covers the use of LoginModules under a separate profile, once WFLY-9067 is integrated this is a follow up task to add support for this profile.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (WFCORE-3553) Improve message from CLI when writing into the directory without permission
by Katerina Novotna (JIRA)
Katerina Novotna created WFCORE-3553:
----------------------------------------
Summary: Improve message from CLI when writing into the directory without permission
Key: WFCORE-3553
URL: https://issues.jboss.org/browse/WFCORE-3553
Project: WildFly Core
Issue Type: Bug
Components: CLI
Affects Versions: 4.0.0.Alpha6
Reporter: Katerina Novotna
Assignee: Jean-Francois Denise
Priority: Minor
*Description of problem:*
Cli displays java exception name when trying to write into the file without permission.
*Actual results:*
[standalone@embedded /] echo aaa > /dir/without/permission
java.nio.file.AccessDeniedException: /dir/without/permission
*Expected results:*
[standalone@embedded /] echo aaa > /dir/without/permission
Couldn't write into the /dir/without/permission. Permission denied.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (WFLY-9403) Unable to deploy clustered ejb in a mixed domain.
by Yeray Borges (JIRA)
[ https://issues.jboss.org/browse/WFLY-9403?page=com.atlassian.jira.plugin.... ]
Yeray Borges updated WFLY-9403:
-------------------------------
Git Pull Request: https://github.com/wildfly/wildfly/pull/10676, https://github.com/wildfly/wildfly/pull/10797 (was: https://github.com/wildfly/wildfly/pull/10676)
> Unable to deploy clustered ejb in a mixed domain.
> -------------------------------------------------
>
> Key: WFLY-9403
> URL: https://issues.jboss.org/browse/WFLY-9403
> Project: WildFly
> Issue Type: Bug
> Components: Clustering, EJB
> Affects Versions: 11.0.0.CR1
> Reporter: Brad Maxwell
> Assignee: Yeray Borges
> Fix For: 12.0.0.Alpha1
>
> Attachments: Clusterejb-0.0.1.jar, domain_EAP7.xml, host_EAP7.xml, host_slave_EAP6.xml
>
>
> Using a ha profile in a mixed domain( i.e EAP 7 as a domain controler and EAP 6.3 as a slave) it does not seem possible to deploy ejb successfully.
> While deploying a simple @clustered ejb on EAP 6.3 server below exception was thrown. This issue is easily replicated.
> {code:java}
> 19:12:11,886 INFO [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-16) JNDI bindings for session bean named CounterBean in deployment unit deployment "Clusterejb-0.0.1.jar" are as follows:
> java:global/Clusterejb-0.0.1/CounterBean!com.test.Counter
> java:app/Clusterejb-0.0.1/CounterBean!com.test.Counter
> java:module/CounterBean!com.test.Counter
> java:jboss/exported/Clusterejb-0.0.1/CounterBean!com.test.Counter
> java:global/Clusterejb-0.0.1/CounterBean
> java:app/Clusterejb-0.0.1/CounterBean
> java:module/CounterBean
> 19:12:12,089 INFO [org.jboss.as.server] (Controller Boot Thread) JBAS018559: Deployed "Clusterejb-0.0.1.jar" (runtime-name : "Clusterejb-0.0.1.jar")
> 19:12:12,090 INFO [org.jboss.as.controller] (Controller Boot Thread) JBAS014774: Service status report
> JBAS014775: New missing/unsatisfied dependencies:
> service jboss.ejb.cache.cluster.simple (missing) dependents: [service jboss.ejb.cache.cluster]
> 19:12:12,093 ERROR [org.jboss.as] (Controller Boot Thread) JBAS015875: JBoss EAP 6.3.0.GA (AS 7.4.0.Final-redhat-19) started (with errors) in 2654ms - Started 185 of 293 services (14 services failed or missing dependencies, 117 services are lazy, passive or on-demand)
> {code}
> I have attached the configuration files for both EAP 7 and EAP 6.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (WFLY-9403) Unable to deploy clustered ejb in a mixed domain.
by Yeray Borges (JIRA)
[ https://issues.jboss.org/browse/WFLY-9403?page=com.atlassian.jira.plugin.... ]
Yeray Borges reopened WFLY-9403:
--------------------------------
Issue reopened in order to include additional tests
> Unable to deploy clustered ejb in a mixed domain.
> -------------------------------------------------
>
> Key: WFLY-9403
> URL: https://issues.jboss.org/browse/WFLY-9403
> Project: WildFly
> Issue Type: Bug
> Components: Clustering, EJB
> Affects Versions: 11.0.0.CR1
> Reporter: Brad Maxwell
> Assignee: Yeray Borges
> Fix For: 12.0.0.Alpha1
>
> Attachments: Clusterejb-0.0.1.jar, domain_EAP7.xml, host_EAP7.xml, host_slave_EAP6.xml
>
>
> Using a ha profile in a mixed domain( i.e EAP 7 as a domain controler and EAP 6.3 as a slave) it does not seem possible to deploy ejb successfully.
> While deploying a simple @clustered ejb on EAP 6.3 server below exception was thrown. This issue is easily replicated.
> {code:java}
> 19:12:11,886 INFO [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-16) JNDI bindings for session bean named CounterBean in deployment unit deployment "Clusterejb-0.0.1.jar" are as follows:
> java:global/Clusterejb-0.0.1/CounterBean!com.test.Counter
> java:app/Clusterejb-0.0.1/CounterBean!com.test.Counter
> java:module/CounterBean!com.test.Counter
> java:jboss/exported/Clusterejb-0.0.1/CounterBean!com.test.Counter
> java:global/Clusterejb-0.0.1/CounterBean
> java:app/Clusterejb-0.0.1/CounterBean
> java:module/CounterBean
> 19:12:12,089 INFO [org.jboss.as.server] (Controller Boot Thread) JBAS018559: Deployed "Clusterejb-0.0.1.jar" (runtime-name : "Clusterejb-0.0.1.jar")
> 19:12:12,090 INFO [org.jboss.as.controller] (Controller Boot Thread) JBAS014774: Service status report
> JBAS014775: New missing/unsatisfied dependencies:
> service jboss.ejb.cache.cluster.simple (missing) dependents: [service jboss.ejb.cache.cluster]
> 19:12:12,093 ERROR [org.jboss.as] (Controller Boot Thread) JBAS015875: JBoss EAP 6.3.0.GA (AS 7.4.0.Final-redhat-19) started (with errors) in 2654ms - Started 185 of 293 services (14 services failed or missing dependencies, 117 services are lazy, passive or on-demand)
> {code}
> I have attached the configuration files for both EAP 7 and EAP 6.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (DROOLS-2160) Enhance UI in Test Scenarios Editor
by Jozef Marko (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2160?page=com.atlassian.jira.plugi... ]
Jozef Marko edited comment on DROOLS-2160 at 1/26/18 6:01 AM:
--------------------------------------------------------------
To summarize changes done in this ticket:
- Two new tabs were introduced
-- Audit log: shows flow of events during scenario run and fired events
-- Settings: User configure here more details about scenario, subset of rules to use, date and time which use for scenario ...
- Delete buttons were increased
- "Delete Scenario Block" button was moved below the particular scenario block, previously was in the middle of the block
- There were added spaces between input fields in "given", "call method" and "expect" blocks
Final state shown here:
!Screenshot from 2018-01-26 01-47-48.png|thumbnail!
was (Author: jomarko):
To summarize changes done in this ticket:
- Two new tabs were introduced
-- Audit log: shows flow of events during scenario run and fired events
-- Settings: User configure here more details about scenario, subset of rules to use, date and time which use for scenario ...
- Delete buttons were increased
- "Delete Scenario Block" button was moved below the particular scenario block, previously was in the middle of the block
- There were added spaces between input fields in "given", "call method" and "expect" blocks
> Enhance UI in Test Scenarios Editor
> -----------------------------------
>
> Key: DROOLS-2160
> URL: https://issues.jboss.org/browse/DROOLS-2160
> Project: Drools
> Issue Type: Enhancement
> Components: Test Scenarios Editor
> Reporter: Ivo Bek
> Assignee: Jozef Marko
> Labels: UX
> Fix For: 7.5.0.Final, 7.6.0.Final
>
> Attachments: Screenshot from 2017-12-01 16-38-52.png, Screenshot from 2018-01-26 01-47-48.png
>
>
> Test Scenarios editor needs to be polished:
> * -Delete Buttons are too small - it would be good to enlarge them.- done with [PR|https://github.com/kiegroup/drools-wb/pull/723]
> * Some other elements doesn't have enough space around them.
> * Please do any other small visual changes which makes sense.
> ** -Introduced two new tabs.- resolved by [PR|https://github.com/kiegroup/drools-wb/pull/754]
> *** One shows information about fired rules during scenario run
> *** Second enables to configure, kie base/session, allowed rules, date and time used in scenario
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months
[JBoss JIRA] (DROOLS-2160) Enhance UI in Test Scenarios Editor
by Jozef Marko (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2160?page=com.atlassian.jira.plugi... ]
Jozef Marko commented on DROOLS-2160:
-------------------------------------
To summarize changes done in this ticket:
- Two new tabs were introduced
-- Audit log: shows flow of events during scenario run and fired events
-- Settings: User configure here more details about scenario, subset of rules to use, date and time which use for scenario ...
- Delete buttons were increased
- "Delete Scenario Block" button was moved below the particular scenario block, previously was in the middle of the block
- There were added spaces between input fields in "given", "call method" and "expect" blocks
> Enhance UI in Test Scenarios Editor
> -----------------------------------
>
> Key: DROOLS-2160
> URL: https://issues.jboss.org/browse/DROOLS-2160
> Project: Drools
> Issue Type: Enhancement
> Components: Test Scenarios Editor
> Reporter: Ivo Bek
> Assignee: Jozef Marko
> Labels: UX
> Attachments: Screenshot from 2017-12-01 16-38-52.png
>
>
> Test Scenarios editor needs to be polished:
> * -Delete Buttons are too small - it would be good to enlarge them.- done with [PR|https://github.com/kiegroup/drools-wb/pull/723]
> * Some other elements doesn't have enough space around them.
> * Please do any other small visual changes which makes sense.
> ** -Introduced two new tabs.- resolved by [PR|https://github.com/kiegroup/drools-wb/pull/754]
> *** One shows information about fired rules during scenario run
> *** Second enables to configure, kie base/session, allowed rules, date and time used in scenario
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 3 months