Skip to content

Commit

Permalink
Merge pull request #323 from darranl/wildfly-core
Browse files Browse the repository at this point in the history
[WFCORE-241] The default for http-upgrade-enabled is actually 'false'.
  • Loading branch information
dmlloyd committed Nov 14, 2014
2 parents dc1fb04 + 24046a7 commit 060b357
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions server/src/main/resources/schema/jboss-as-config_2_0.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1598,7 +1598,7 @@
<xs:element name="socket" type="http-management-socketType"/>
</xs:sequence>
<xs:attribute name="console-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="false"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Expand Down Expand Up @@ -1722,7 +1722,7 @@
<xs:element name="socket-binding" type="http-management-socket-binding-refType"/>
</xs:choice>
<xs:attribute name="console-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="false"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Expand Down
4 changes: 2 additions & 2 deletions server/src/main/resources/schema/jboss-as-config_2_1.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1783,7 +1783,7 @@
<xs:element name="socket" type="http-management-socketType"/>
</xs:sequence>
<xs:attribute name="console-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="false"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Expand Down Expand Up @@ -1907,7 +1907,7 @@
<xs:element name="socket-binding" type="http-management-socket-binding-refType"/>
</xs:choice>
<xs:attribute name="console-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="false"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Expand Down
4 changes: 2 additions & 2 deletions server/src/main/resources/schema/jboss-as-config_2_2.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1822,7 +1822,7 @@
<xs:element name="socket" type="http-management-socketType"/>
</xs:sequence>
<xs:attribute name="console-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="false"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Expand Down Expand Up @@ -1946,7 +1946,7 @@
<xs:element name="socket-binding" type="http-management-socket-binding-refType"/>
</xs:choice>
<xs:attribute name="console-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="false"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Expand Down
4 changes: 2 additions & 2 deletions server/src/main/resources/schema/wildfly-config_3_0.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1973,7 +1973,7 @@
<xs:element name="socket" type="host-http-management-socketType"/>
</xs:sequence>
<xs:attribute name="console-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="false"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Expand Down Expand Up @@ -2128,7 +2128,7 @@
<xs:element name="socket-binding" type="http-management-socket-binding-refType"/>
</xs:choice>
<xs:attribute name="console-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="true"/>
<xs:attribute name="http-upgrade-enabled" type="xs:boolean" use="optional" default="false"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Expand Down

0 comments on commit 060b357

Please sign in to comment.