[JBoss JIRA] (WFCORE-1169) EAP welcome page gives 404 if JBOSS_HOME contains lower case drive letter (Windows)
by Tomaz Cerar (JIRA)
[ https://issues.jboss.org/browse/WFCORE-1169?page=com.atlassian.jira.plugi... ]
Tomaz Cerar moved JBEAP-2063 to WFCORE-1169:
--------------------------------------------
Project: WildFly Core (was: JBoss Enterprise Application Platform)
Key: WFCORE-1169 (was: JBEAP-2063)
Workflow: GIT Pull Request workflow (was: CDW v1)
Component/s: Scripts
(was: VFS)
(was: Web (Undertow))
Target Release: (was: 7.0.0.GA)
Affects Version/s: 2.0.3.Final
(was: 7.0.0.ER2 (Beta))
Affects Testing: (was: Regression)
> EAP welcome page gives 404 if JBOSS_HOME contains lower case drive letter (Windows)
> -----------------------------------------------------------------------------------
>
> Key: WFCORE-1169
> URL: https://issues.jboss.org/browse/WFCORE-1169
> Project: WildFly Core
> Issue Type: Bug
> Components: Scripts
> Affects Versions: 2.0.3.Final
> Environment: Windows
> Reporter: Tomaz Cerar
> Assignee: Tomaz Cerar
> Priority: Blocker
>
> EAP server welcome page (aka http://localhost:8080/ ) returns "404 - Not Found" once the JBOSS_HOME contains lower case drive letter on Windows.
> *reproduce*
> \- start the EAP using absolute path with lower case drive letter
> {noformat}C:\Users\Administrator>c:\jboss-eap-7.0\bin\standalone.bat{noformat}
> \- get the response from welcome page
> {noformat}
> wget.exe --server-response --spider http://localhost:8080
> Spider mode enabled. Check if remote file exists.
> --2015-11-30 07:26:57-- http://localhost:8080/
> Resolving localhost (localhost)... ::1, 127.0.0.1
> Connecting to localhost (localhost)|::1|:8080... failed: Connection refused.
> Connecting to localhost (localhost)|127.0.0.1|:8080... connected.
> HTTP request sent, awaiting response...
> HTTP/1.1 404 Not Found
> Connection: keep-alive
> X-Powered-By: Undertow/1
> Server: JBoss-EAP/7
> Content-Length: 74
> Content-Type: text/html
> Date: Mon, 30 Nov 2015 12:26:58 GMT
> Remote file does not exist -- broken link!!!
> {noformat}
> Regression against 6.4.0 and 7.0.0.ER13
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 5 months
[JBoss JIRA] (WFLY-5450) Update to Hibernate ORM 5.0.5.Final
by Scott Marlow (JIRA)
[ https://issues.jboss.org/browse/WFLY-5450?page=com.atlassian.jira.plugin.... ]
Scott Marlow commented on WFLY-5450:
------------------------------------
It take time to run the WildFly testing, we typically don't do the testing until after the Hibernate release. For the past week, we have been running the EE TCK with the Hibernate ORM 5.0.5 snapshot. While this increases our chances of 5.0.5.Final working, it doesn't prevent a regression from being merged in on the day of the release.
> Update to Hibernate ORM 5.0.5.Final
> -----------------------------------
>
> Key: WFLY-5450
> URL: https://issues.jboss.org/browse/WFLY-5450
> Project: WildFly
> Issue Type: Component Upgrade
> Components: JPA / Hibernate
> Reporter: Martin Kamp Jensen
> Assignee: Scott Marlow
> Fix For: 10.0.0.CR5
>
>
> Please, if possible, include the latest Hibernate Core bugfix release in the final version of WildFly 10.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 5 months
[JBoss JIRA] (WFCORE-1168) Incorrect null check in SimpleResourceDefinition.Parameter.setDeprecatedSince
by Brian Stansberry (JIRA)
Brian Stansberry created WFCORE-1168:
----------------------------------------
Summary: Incorrect null check in SimpleResourceDefinition.Parameter.setDeprecatedSince
Key: WFCORE-1168
URL: https://issues.jboss.org/browse/WFCORE-1168
Project: WildFly Core
Issue Type: Bug
Components: Domain Management
Affects Versions: 2.0.3.Final
Reporter: Brian Stansberry
Assignee: Brian Stansberry
Fix For: 2.0.4.Final
The null check checks the field being assigned instead of the param passed in:
{code}
public Parameters setDeprecatedSince(ModelVersion deprecatedSince) {
if (deprecationData == null) { // <-- OOPS!
throw ControllerLogger.ROOT_LOGGER.nullVar("deprecatedSince");
}
this.deprecationData = new DeprecationData(deprecatedSince);
{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 5 months