[JBoss JIRA] (JBJCA-1111) Throwable instantiation on TxConnectionListener.TransactionSynchronization
by Luis Barreiro (JIRA)
Luis Barreiro created JBJCA-1111:
------------------------------------
Summary: Throwable instantiation on TxConnectionListener.TransactionSynchronization
Key: JBJCA-1111
URL: https://issues.jboss.org/browse/JBJCA-1111
Project: IronJacamar
Issue Type: Task
Reporter: Luis Barreiro
Assignee: Jesper Pedersen
In org.jboss.jca.core.connectionmanager.listener.TxConnectionListener.TransactionSynchronization there is a Throwable that is always instantiated during the creation of the object, but in most cases it's never thrown.
There is a performance penalty associated with filling the stack trace of every exception, even if it's not thrown.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 1 month
[JBoss JIRA] (WFLY-2432) Bad --help output for enable and disable from add-user utility.
by Darran Lofthouse (JIRA)
Darran Lofthouse created WFLY-2432:
--------------------------------------
Summary: Bad --help output for enable and disable from add-user utility.
Key: WFLY-2432
URL: https://issues.jboss.org/browse/WFLY-2432
Project: WildFly
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Scripts
Reporter: Darran Lofthouse
Assignee: Darran Lofthouse
Fix For: 8.0.0.CR1
The following is the output from add-user.sh --help
{code}
[darranl@localhost bin]$ ./add-user.sh --help
Usage: ./add-user.sh [args...]
where args include:
-a If set add an application user instead
of a management user
-dc <value> Define the location of the domain
config directory.
-sc <value> Define the location the server config
directory.
-up, --user-properties <value> The file name of the user properties
file which can be an absolute path.
-g, --group <value> Comma-separated list of groups for the
user.
-gp, --group-properties <value> The file name of the group properties
file which can be an absolute path. (If
group properties is specified then user
properties MUST also be specified).
-p, --password <value> Password of the user. Should not be
same as the username
-u, --user <value> Name of the user
-r, --realm <value> Name of the realm used to secure the
management interfaces (default is
"ManagementRealm")
-s, --silent Activate the silent mode (no output to
the console)
-e, --enable Activate the silent mode (no output to
the console)
-d, --disable Activate the silent mode (no output to
the console)
-cw, --confirm-warning Automatically confirm warning in
interactive mode
-h, --help Display this message and exit
{code}
Enable and Disable need their descriptions updating as they are copied from a previous description.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 1 month
[JBoss JIRA] (WFLY-2431) Console flipping to "jboss-ejb-policy" when select other security domain
by dometec (JIRA)
dometec created WFLY-2431:
-----------------------------
Summary: Console flipping to "jboss-ejb-policy" when select other security domain
Key: WFLY-2431
URL: https://issues.jboss.org/browse/WFLY-2431
Project: WildFly
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Web Console
Affects Versions: 8.0.0.Beta1
Environment: Linux x64 (Fedora), server started with standalone.xml profile
Reporter: dometec
Assignee: Heiko Braun
Priority: Minor
Attachments: wildfly-console.flipping.ogv
Console flipping to "jboss-ejb-policy" when select other security domain
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 1 month
[JBoss JIRA] (DROOLS-280) lock-on-active broken
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/DROOLS-280?page=com.atlassian.jira.plugin... ]
RH Bugzilla Integration commented on DROOLS-280:
------------------------------------------------
Mario Fusco <mfusco(a)redhat.com> changed the Status of [bug 1025824|https://bugzilla.redhat.com/show_bug.cgi?id=1025824] from NEW to MODIFIED
> lock-on-active broken
> ---------------------
>
> Key: DROOLS-280
> URL: https://issues.jboss.org/browse/DROOLS-280
> Project: Drools
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 6.0.0.CR4
> Reporter: Anthony Patricio
> Assignee: Mario Fusco
> Fix For: 6.0.0.Final
>
>
> Hi,
> lock-on-active is not working as expected.
> I seems to work as activation-group.
> Works fine with 5.x
> Fails with 6.0.0 CR3 and CR4
> Fact:
> {code:java}
> public class Poc implements Serializable {
> private static final long serialVersionUID = 1L;
> private long id = 1;
> private boolean test1 = false;
> private boolean test2 = false;
> private int foundTest = 0;
> ...
> }
> {code}
> Rule:
> {code:java}
> rule "test1"
> lock-on-active
> dialect "mvel"
> when
> $poc:Poc( isTest1() )
> then
> System.out.println("test1 found");
> modify($poc) { setFoundTest($poc.getFoundTest() + 1) }
> end
> rule "test2"
> lock-on-active
> dialect "mvel"
> when
> $poc:Poc( isTest2() )
> then
> System.out.println("test2 found");
> modify($poc) { setFoundTest($poc.getFoundTest() + 1) }
> end
> {code}
> Test:
> {code:java}
> @Test
> public void lockOnActiveTest() {
> // Get the Knowledge base from the DRL file
> KieSession kSession = getSF();
>
> Poc poc = new Poc();
> poc.setTest1(true);
> poc.setTest2(true);
>
> kSession.insert(poc);
>
> // Fire the rules
> kSession.fireAllRules();
>
> assertTrue("broken",poc.getFoundTest()==2);
>
> // Clean up
> kSession.dispose();
> }
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 1 month
[JBoss JIRA] (DROOLS-280) lock-on-active broken
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/DROOLS-280?page=com.atlassian.jira.plugin... ]
RH Bugzilla Integration commented on DROOLS-280:
------------------------------------------------
Mario Fusco <mfusco(a)redhat.com> made a comment on [bug 1025824|https://bugzilla.redhat.com/show_bug.cgi?id=1025824]
Fixed by https://github.com/droolsjbpm/drools/commit/1ccbc2013
> lock-on-active broken
> ---------------------
>
> Key: DROOLS-280
> URL: https://issues.jboss.org/browse/DROOLS-280
> Project: Drools
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 6.0.0.CR4
> Reporter: Anthony Patricio
> Assignee: Mario Fusco
> Fix For: 6.0.0.Final
>
>
> Hi,
> lock-on-active is not working as expected.
> I seems to work as activation-group.
> Works fine with 5.x
> Fails with 6.0.0 CR3 and CR4
> Fact:
> {code:java}
> public class Poc implements Serializable {
> private static final long serialVersionUID = 1L;
> private long id = 1;
> private boolean test1 = false;
> private boolean test2 = false;
> private int foundTest = 0;
> ...
> }
> {code}
> Rule:
> {code:java}
> rule "test1"
> lock-on-active
> dialect "mvel"
> when
> $poc:Poc( isTest1() )
> then
> System.out.println("test1 found");
> modify($poc) { setFoundTest($poc.getFoundTest() + 1) }
> end
> rule "test2"
> lock-on-active
> dialect "mvel"
> when
> $poc:Poc( isTest2() )
> then
> System.out.println("test2 found");
> modify($poc) { setFoundTest($poc.getFoundTest() + 1) }
> end
> {code}
> Test:
> {code:java}
> @Test
> public void lockOnActiveTest() {
> // Get the Knowledge base from the DRL file
> KieSession kSession = getSF();
>
> Poc poc = new Poc();
> poc.setTest1(true);
> poc.setTest2(true);
>
> kSession.insert(poc);
>
> // Fire the rules
> kSession.fireAllRules();
>
> assertTrue("broken",poc.getFoundTest()==2);
>
> // Clean up
> kSession.dispose();
> }
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 1 month
[JBoss JIRA] (DROOLS-280) lock-on-active broken
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/DROOLS-280?page=com.atlassian.jira.plugin... ]
RH Bugzilla Integration updated DROOLS-280:
-------------------------------------------
Bugzilla Update: Perform
Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=1025824
> lock-on-active broken
> ---------------------
>
> Key: DROOLS-280
> URL: https://issues.jboss.org/browse/DROOLS-280
> Project: Drools
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 6.0.0.CR4
> Reporter: Anthony Patricio
> Assignee: Mario Fusco
>
> Hi,
> lock-on-active is not working as expected.
> I seems to work as activation-group.
> Works fine with 5.x
> Fails with 6.0.0 CR3 and CR4
> Fact:
> {code:java}
> public class Poc implements Serializable {
> private static final long serialVersionUID = 1L;
> private long id = 1;
> private boolean test1 = false;
> private boolean test2 = false;
> private int foundTest = 0;
> ...
> }
> {code}
> Rule:
> {code:java}
> rule "test1"
> lock-on-active
> dialect "mvel"
> when
> $poc:Poc( isTest1() )
> then
> System.out.println("test1 found");
> modify($poc) { setFoundTest($poc.getFoundTest() + 1) }
> end
> rule "test2"
> lock-on-active
> dialect "mvel"
> when
> $poc:Poc( isTest2() )
> then
> System.out.println("test2 found");
> modify($poc) { setFoundTest($poc.getFoundTest() + 1) }
> end
> {code}
> Test:
> {code:java}
> @Test
> public void lockOnActiveTest() {
> // Get the Knowledge base from the DRL file
> KieSession kSession = getSF();
>
> Poc poc = new Poc();
> poc.setTest1(true);
> poc.setTest2(true);
>
> kSession.insert(poc);
>
> // Fire the rules
> kSession.fireAllRules();
>
> assertTrue("broken",poc.getFoundTest()==2);
>
> // Clean up
> kSession.dispose();
> }
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 1 month