[JBoss JIRA] (WFCORE-2772) DomainDefinition.REMOVE does not remove all services installed by ADD
by Brian Stansberry (JIRA)
Brian Stansberry created WFCORE-2772:
----------------------------------------
Summary: DomainDefinition.REMOVE does not remove all services installed by ADD
Key: WFCORE-2772
URL: https://issues.jboss.org/browse/WFCORE-2772
Project: WildFly Core
Issue Type: Bug
Components: Security
Reporter: Brian Stansberry
Assignee: Darran Lofthouse
DomainDefinition.ADD installs a service named for the capability, plus another that has that name with "initial" appended. But DomainDefinition.REMOVE only removes the former. The result is if you do a remove of the domain with allow-resource-service-restart=true, it fails because the 'initial' service is left behind with missing dependencies. Rollback also fails because the 'initial' service is already present so can't be restored.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
7 years, 8 months
[JBoss JIRA] (WFLY-8716) Revert commit that added DwmTest as it is in the wrong place
by Stuart Douglas (JIRA)
[ https://issues.jboss.org/browse/WFLY-8716?page=com.atlassian.jira.plugin.... ]
Stuart Douglas moved JBEAP-10780 to WFLY-8716:
----------------------------------------------
Project: WildFly (was: JBoss Enterprise Application Platform)
Key: WFLY-8716 (was: JBEAP-10780)
Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1)
> Revert commit that added DwmTest as it is in the wrong place
> -------------------------------------------------------------
>
> Key: WFLY-8716
> URL: https://issues.jboss.org/browse/WFLY-8716
> Project: WildFly
> Issue Type: Bug
> Reporter: Stuart Douglas
> Assignee: Stuart Douglas
>
> This test adds two addition manual mode containers and another surefire execution to the integration/basic tests. This test should be somewhere else (probably manualmode, or maybe one of the clustering modules depending on what it is testing).
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
7 years, 8 months
[JBoss JIRA] (DROOLS-1555) Add support to compile FEEL expressions to bytecode
by Edson Tirelli (JIRA)
Edson Tirelli created DROOLS-1555:
-------------------------------------
Summary: Add support to compile FEEL expressions to bytecode
Key: DROOLS-1555
URL: https://issues.jboss.org/browse/DROOLS-1555
Project: Drools
Issue Type: Feature Request
Components: dmn engine
Affects Versions: 7.0.0.CR3
Reporter: Edson Tirelli
Assignee: Edson Tirelli
Fix For: 7.1.0.Final
FEEL expressions are currently interpreted. Add support to compile them down to bytecode for improved performance.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
7 years, 8 months
[JBoss JIRA] (WFCORE-2771) Wildfly Management Console should log bound ports
by Jason Tedor (JIRA)
[ https://issues.jboss.org/browse/WFCORE-2771?page=com.atlassian.jira.plugi... ]
Jason Tedor commented on WFCORE-2771:
-------------------------------------
I should add that this is similar to WFLY-8593.
> Wildfly Management Console should log bound ports
> -------------------------------------------------
>
> Key: WFCORE-2771
> URL: https://issues.jboss.org/browse/WFCORE-2771
> Project: WildFly Core
> Issue Type: Bug
> Components: Server
> Reporter: Jason Tedor
> Assignee: Jason Greene
>
> When binding Wildfly Management Console to an ephemeral port (i.e., by specifying port 0), Wildfly states that the management console is not enabled:
> {code}
> 23:15:55,138 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0063: Http management interface is not enabled
> 23:15:55,138 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0054: Admin console is not enabled
> {code}
> This isn't right. For example, using {{lsof}} I can see that Wildfly bound to an ephemeral port. After starting Wildfly with {{-Djboss.management.http.port=0}}:
> {code}
> $ lsof -p `jps | grep jboss-modules.jar | awk '{print $1}'` -P -n | grep TCP
> java 59501 jason 379u IPv4 0xd038b817c1abd6a5 0t0 TCP 127.0.0.1:8080 (LISTEN)
> java 59501 jason 387u IPv4 0xd038b817acfc6a85 0t0 TCP 127.0.0.1:65238 (LISTEN)
> java 59501 jason 390u IPv4 0xd038b817b86956a5 0t0 TCP 127.0.0.1:8443 (LISTEN)
> $ curl -v -XGET localhost:65238
> Note: Unnecessary use of -X or --request, GET is already inferred.
> * Rebuilt URL to: localhost:65238/
> * Trying ::1...
> * TCP_NODELAY set
> * Connection failed
> * connect to ::1 port 65238 failed: Connection refused
> * Trying 127.0.0.1...
> * TCP_NODELAY set
> * Connected to localhost (127.0.0.1) port 65238 (#0)
> > GET / HTTP/1.1
> > Host: localhost:65238
> > User-Agent: curl/7.51.0
> > Accept: */*
> >
> < HTTP/1.1 301 Moved Permanently
> < Connection: keep-alive
> < Location: http://localhost:65238/console/index.html
> < Content-Length: 0
> < Date: Sun, 07 May 2017 03:25:04 GMT
> <
> * Curl_http_done: called premature == 0
> * Connection #0 to host localhost left intact
> {code}
> showing that Wildfly is indeed listening and giving the usual redirect to the Console index.
> Instead, Wildfly should log the ephemeral port that it actually bound to:
> {code}
> 23:27:09,347 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:65301/management
> 23:27:09,347 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:65301
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
7 years, 8 months
[JBoss JIRA] (WFCORE-2771) Wildfly Management Console should log bound ports
by Jason Tedor (JIRA)
[ https://issues.jboss.org/browse/WFCORE-2771?page=com.atlassian.jira.plugi... ]
Jason Tedor commented on WFCORE-2771:
-------------------------------------
I opened https://github.com/wildfly/wildfly-core/pull/2390 for this.
> Wildfly Management Console should log bound ports
> -------------------------------------------------
>
> Key: WFCORE-2771
> URL: https://issues.jboss.org/browse/WFCORE-2771
> Project: WildFly Core
> Issue Type: Bug
> Components: Server
> Reporter: Jason Tedor
> Assignee: Jason Greene
>
> When binding Wildfly Management Console to an ephemeral port (i.e., by specifying port 0), Wildfly states that the management console is not enabled:
> {code}
> 23:15:55,138 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0063: Http management interface is not enabled
> 23:15:55,138 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0054: Admin console is not enabled
> {code}
> This isn't right. For example, using {{lsof}} I can see that Wildfly bound to an ephemeral port. After starting Wildfly with {{-Djboss.management.http.port=0}}:
> {code}
> $ lsof -p `jps | grep jboss-modules.jar | awk '{print $1}'` -P -n | grep TCP
> java 59501 jason 379u IPv4 0xd038b817c1abd6a5 0t0 TCP 127.0.0.1:8080 (LISTEN)
> java 59501 jason 387u IPv4 0xd038b817acfc6a85 0t0 TCP 127.0.0.1:65238 (LISTEN)
> java 59501 jason 390u IPv4 0xd038b817b86956a5 0t0 TCP 127.0.0.1:8443 (LISTEN)
> $ curl -v -XGET localhost:65238
> Note: Unnecessary use of -X or --request, GET is already inferred.
> * Rebuilt URL to: localhost:65238/
> * Trying ::1...
> * TCP_NODELAY set
> * Connection failed
> * connect to ::1 port 65238 failed: Connection refused
> * Trying 127.0.0.1...
> * TCP_NODELAY set
> * Connected to localhost (127.0.0.1) port 65238 (#0)
> > GET / HTTP/1.1
> > Host: localhost:65238
> > User-Agent: curl/7.51.0
> > Accept: */*
> >
> < HTTP/1.1 301 Moved Permanently
> < Connection: keep-alive
> < Location: http://localhost:65238/console/index.html
> < Content-Length: 0
> < Date: Sun, 07 May 2017 03:25:04 GMT
> <
> * Curl_http_done: called premature == 0
> * Connection #0 to host localhost left intact
> {code}
> showing that Wildfly is indeed listening and giving the usual redirect to the Console index.
> Instead, Wildfly should log the ephemeral port that it actually bound to:
> {code}
> 23:27:09,347 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:65301/management
> 23:27:09,347 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:65301
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
7 years, 8 months