[JBoss JIRA] Created: (AS7-731) Datasource metrics not appearing in read-resource-description output
by Brian Stansberry (JIRA)
Datasource metrics not appearing in read-resource-description output
--------------------------------------------------------------------
Key: AS7-731
URL: https://issues.jboss.org/browse/AS7-731
Project: Application Server 7
Issue Type: Bug
Components: Domain Management, JCA
Reporter: Brian Stansberry
Assignee: Stefano Maestri
Fix For: 7.0.0.CR1
pilhuhn: shouldn't stuff that shows up in :read-resource also show up in :read-resource-description ( even if only as a dummy element ) ?
bstansberry: pilhuhn: yes
bstansberry: what doesn't?
• pilhuhn is missing e.g. MaxUsedCount for data sources
pilhuhn: and all the other metrics on the h2 datasource
pilhuhn: [domain@localhost:9999 data-source=java:/H2DS] :read-resource(include-runtime=true)
pilhuhn: vs
pilhuhn: [domain@localhost:9999 data-source=java:/H2DS] :read-resource-description(include-runtime=true)
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[JBoss JIRA] Created: (JBRULES-2836) Nested conditional expression (x?y:z) does not resolve variable binding
by Wolfgang Laun (JIRA)
Nested conditional expression (x?y:z) does not resolve variable binding
-----------------------------------------------------------------------
Key: JBRULES-2836
URL: https://issues.jboss.org/browse/JBRULES-2836
Project: Drools
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: drools-compiler, drools-compiler (expert)
Affects Versions: 5.1.1.FINAL
Reporter: Wolfgang Laun
Assignee: Mark Proctor
Fix For: 5.2.0.M1
A return value restriction containing a nested conditional expression referencing two previously bound variables is flagged as erroneous. (A similar, not nested, expression referencing the same variables, is compiled and executed correctly.)
The provided DRL is sufficient for producing the error:
ule Compilation error : [Rule name='check sum']
appl/domain/Rule_check_sum_0.java (9:417) : $a2 cannot be resolved
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[JBoss JIRA] Created: (JBRULES-3018) There is no Eclipse project for examples.
by Jervis Liu (JIRA)
There is no Eclipse project for examples.
------------------------------------------
Key: JBRULES-3018
URL: https://issues.jboss.org/browse/JBRULES-3018
Project: Drools
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 5.2.0.M2
Reporter: Jervis Liu
Assignee: Mark Proctor
Fix For: 5.2.0.CR1
Drools Expert Guide section 9.1 says " Then download and extract the drools-examples zip file, which includes an already created Eclipse project. Import that project into a new Eclipse workspace.".
But for 5.2, we dont have eclipse project anymore.
BTW, droolsjbpm-integration examples ship with a pom file. At least you can generate Eclipse project with the pom by yourself.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[JBoss JIRA] Created: (JBRULES-2873) Rule fires unexpectedly - not CE fails
by Wolfgang Laun (JIRA)
Rule fires unexpectedly - not CE fails
--------------------------------------
Key: JBRULES-2873
URL: https://issues.jboss.org/browse/JBRULES-2873
Project: Drools
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: drools-core
Affects Versions: 5.1.1.FINAL
Reporter: Wolfgang Laun
Assignee: Mark Proctor
Priority: Critical
The rule shown below fires, and then the code on the RHS prints "But cell ... matches" which is only possible when there is a Cell according to the constraints in the "not" CE. - The full Sudoku code is available.
rule "column elimination"
when
not Setting()
$i: Integer()
# occurs in a Cell
$c: Cell( free contains $i, $cs: cellSqr, $cc: cellCol )
# but not in another cell of the same square and a different column
not Cell( this != $c, free contains $i, cellSqr == $cs, cellCol != $cc )
## not ( $oc: Cell( this != $c )
## and
## eval( $oc.getFree().contains( $i ) &&
## $oc.getCellSqr().equals( $cs ) &&
## ! $oc.getCellCol().equals( $cc ) ) )
# but there is a cell in the same column and another square containing this value
$cx: Cell( freeCount > 1, free contains $i, cellCol == $cc, cellSqr != $cs )
then
# remove the value from that other cell
System.out.println( "column elimination due to " + $c.posAsString() +
": remove " + $i + " from " + $cx.posAsString() );
for( int iRow = 0; iRow < 9; iRow++ ){
for( int iCol = 0; iCol < 9; iCol++ ){
Cell cell = Sudoku.sudoku.cells[iRow][iCol];
if( ! cell.equals( $c ) &&
cell.getCellSqr().equals( $cs ) &&
! cell.getCellCol().equals( $cc ) &&
cell.getFree().contains( $i ) ){
System.out.println( "But cell " + cell.toString() + " matches!" );
}
}
}
for( Cell c: $cs.getCells() ){
System.out.print( c.posAsString() + ": " + c.getFree() +
" cc="+c.getCellCol() + " cs="+c.getCellSqr() + "; " );
}
System.out.println();
modify( $cx ){ blockValue( $i ) }
end
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[JBoss JIRA] Created: (JBAS-9279) Add additional resteasy providers
by Stuart Douglas (JIRA)
Add additional resteasy providers
---------------------------------
Key: JBAS-9279
URL: https://issues.jboss.org/browse/JBAS-9279
Project: JBoss Application Server
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Affects Versions: 7.0.0.Beta2
Reporter: Stuart Douglas
Assignee: Stuart Douglas
Fix For: 7.0.0.CR1
We need the following additional Resteasy providers:
* resteasy-spring (OPTIONAL if we support Spring within EAP)
* resteasty-guice (OPTIONAL if we support Guice in EAP)
* resteasy-jackson (REQUIRED)
* resteasy-multipart (REQUIRED)
* resteasy-atom (REQUIRED)
* resteasy-jsapi (REQUIRED)
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[JBoss JIRA] Created: (JBAS-9209) Consider storing OSGi bundles outside the modules hirachy
by Thomas Diesler (JIRA)
Consider storing OSGi bundles outside the modules hirachy
---------------------------------------------------------
Key: JBAS-9209
URL: https://issues.jboss.org/browse/JBAS-9209
Project: JBoss Application Server
Issue Type: Task
Security Level: Public (Everyone can see)
Affects Versions: 7.0.0.Beta1
Reporter: Thomas Diesler
Assignee: Thomas Diesler
[tdiesler@localhost jboss-as]$ git grep "This is an OSGi bundle"
build/src/main/resources/modules/org/apache/aries/jmx/main/module.xml: <!-- This is an OSGi bundle. It cannot have module dependencies. -->
build/src/main/resources/modules/org/apache/aries/util/main/module.xml: <!-- This is an OSGi bundle. It cannot have module dependencies. -->
build/src/main/resources/modules/org/apache/felix/configadmin/main/module.xml: <!-- This is an OSGi bundle. It cannot have module dependencies. -->
build/src/main/resources/modules/org/jboss/as/osgi/configadmin/main/module.xml: <!-- This is an OSGi bundle. It cannot have module dependencies. -->
build/src/main/resources/modules/org/jboss/osgi/common/main/module.xml: <!-- This is an OSGi bundle. It cannot have module dependencies. -->
build/src/main/resources/modules/org/jboss/osgi/jmx/main/module.xml: <!-- This is an OSGi bundle. It cannot have module dependencies. -->
build/src/main/resources/modules/org/osgi/compendium/main/module.xml: <!-- This is an OSGi bundle. It cannot have module dependencies. -->
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month