[JBoss JIRA] (AS7-4939) CLONE - CLI: unable to specify command arguments to echo-dmr command
by Alexey Loubyansky (JIRA)
[ https://issues.jboss.org/browse/AS7-4939?page=com.atlassian.jira.plugin.s... ]
Alexey Loubyansky resolved AS7-4939.
------------------------------------
Fix Version/s: 7.1.3.Final (EAP)
(was: 7.1.4.Final (EAP))
Resolution: Done
This was fixed two months ago, commit d3cefc40ceb1716d76d8d6f8e9a71078422afb29
> CLONE - CLI: unable to specify command arguments to echo-dmr command
> --------------------------------------------------------------------
>
> Key: AS7-4939
> URL: https://issues.jboss.org/browse/AS7-4939
> Project: Application Server 7
> Issue Type: Bug
> Components: CLI
> Reporter: Dominik Pospisil
> Assignee: Alexey Loubyansky
> Fix For: 7.1.3.Final (EAP), 7.2.0.Alpha1
>
>
> It seems to be impossible to specify command arguments to echo-dmr command beginning with double-dash.
> While e.g. this works:
> [domain@localhost:9999 /] echo-dmr undeploy deployment0.war
> {
> "operation" => "composite",
> "address" => [],
> "steps" => [{
> "operation" => "remove",
> "address" => [("deployment" => "deployment0.war")]
> }]
> }
> This does not:
> [domain@localhost:9999 /] echo-dmr deploy /home/dpospisi/deploy/deployment1.war --all-server-groups
> Unrecognized arguments: [--all-server-groups]
> Putting requested command in quotes does not work as well.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 8 months
[JBoss JIRA] (AS7-4268) Create subsystem for JMS bridge
by Justin Bertram (JIRA)
Justin Bertram created AS7-4268:
-----------------------------------
Summary: Create subsystem for JMS bridge
Key: AS7-4268
URL: https://issues.jboss.org/browse/AS7-4268
Project: Application Server 7
Issue Type: Task
Components: JMS
Affects Versions: 7.1.1.Final
Reporter: Justin Bertram
Assignee: Jeff Mesnil
Currently there is no pre-defined way to deploy a JMS bridge (i.e. org.hornetq.jms.bridge.impl.JMSBridgeImpl) in AS7. In JBoss AS 6 and earlier you could deploy the bridge as an MBean or JBoss MC bean, but the current configuration schema in AS7 simply doesn't support it. The bridge is a nice feature so we need a way to deploy it.
It doesn't make sense to add the JMS bridge to a <hornetq-server> because the bridge can operate independently of a local HornetQ server. It really needs its own subsystem.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 8 months
[JBoss JIRA] (JBRULES-3537) JIT crash when throwing RuntimeException
by Willem van Asperen (JIRA)
Willem van Asperen created JBRULES-3537:
-------------------------------------------
Summary: JIT crash when throwing RuntimeException
Key: JBRULES-3537
URL: https://issues.jboss.org/browse/JBRULES-3537
Project: Drools
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: drools-core
Affects Versions: 5.4.0.Final
Environment: linux
java version "1.7.0_04-icedtea"
OpenJDK Runtime Environment (IcedTea7 2.2) (ArchLinux build 7.u4_2.2-1-x86_64)
OpenJDK 64-Bit Server VM (build 23.0-b21, mixed mode)
Reporter: Willem van Asperen
Assignee: Mark Proctor
There is probably something wrong with my rules. But I get a funny error (see trace below).
This seems to be because the ConditionAnalyzer wants to throw a RuntimeException (line 229):
if (accessor == null) {
throw new RuntimeException("Null accessor on node: " + node);
}
Then the toString of ASTNode node crashes with a NullPointerException at line 427:
public String toString() {
return isOperator() ? "<<" + DebugTools.getOperatorName(getOperator()) + ">>" :
(PCTX_STORED & fields) != 0 ? nameCache : new String(expr, start, offset);
}
This is because the variable expr is null.
Exception in thread "Thread-1" java.lang.NullPointerException
at java.lang.String.<init>(String.java:229)
at org.mvel2.ast.ASTNode.toString(ASTNode.java:426)
at java.lang.String.valueOf(String.java:2902)
at java.lang.StringBuilder.append(StringBuilder.java:128)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeNode(ConditionAnalyzer.java:229)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeSingleCondition(ConditionAnalyzer.java:126)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCondition(ConditionAnalyzer.java:102)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCombinedCondition(ConditionAnalyzer.java:133)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCondition(ConditionAnalyzer.java:94)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCombinedCondition(ConditionAnalyzer.java:133)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCondition(ConditionAnalyzer.java:94)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCombinedCondition(ConditionAnalyzer.java:133)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCondition(ConditionAnalyzer.java:94)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCombinedCondition(ConditionAnalyzer.java:133)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCondition(ConditionAnalyzer.java:94)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCombinedCondition(ConditionAnalyzer.java:133)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCondition(ConditionAnalyzer.java:94)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCombinedCondition(ConditionAnalyzer.java:133)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCondition(ConditionAnalyzer.java:94)
at org.drools.rule.constraint.ConditionAnalyzer.analyzeCondition(ConditionAnalyzer.java:73)
at org.drools.rule.constraint.MvelConditionEvaluator.getAnalyzedCondition(MvelConditionEvaluator.java:83)
at org.drools.rule.constraint.MvelConstraint.executeJitting(MvelConstraint.java:214)
at org.drools.rule.constraint.MvelConstraint.access$000(MvelConstraint.java:41)
at org.drools.rule.constraint.MvelConstraint$1.run(MvelConstraint.java:201)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
at java.lang.Thread.run(Thread.java:722)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 8 months