[JBoss JIRA] (DROOLS-1683) ExcelParse can re-write files
by James Livingston (JIRA)
James Livingston created DROOLS-1683:
----------------------------------------
Summary: ExcelParse can re-write files
Key: DROOLS-1683
URL: https://issues.jboss.org/browse/DROOLS-1683
Project: Drools
Issue Type: Bug
Components: decision tables
Affects Versions: 7.0.0.Final
Reporter: James Livingston
Assignee: Mario Fusco
ExcelParser.open(File) uses the single argument WorkbookFactory.create() call, which opens the file in rewad-write mode, so when parseWorkbook() calls close on it, it will save the workbook to disk.
Usually the resulting file is the same, however it may be binary-different but equivalent(causing git conflicts). Being read-only does not cause an error since the exceptions are swallowed silently.
It should use the three argument form of WorkbookFactory.create() and pass the read-only flag
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (WFCORE-3073) Handle TERM cleanly
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3073?page=com.atlassian.jira.plugi... ]
Brian Stansberry reassigned WFCORE-3073:
----------------------------------------
Component/s: Domain Management
(was: Server)
Assignee: Brian Stansberry (was: Jason Greene)
> Handle TERM cleanly
> -------------------
>
> Key: WFCORE-3073
> URL: https://issues.jboss.org/browse/WFCORE-3073
> Project: WildFly Core
> Issue Type: Feature Request
> Components: Domain Management
> Reporter: Ben Parees
> Assignee: Brian Stansberry
> Fix For: 4.0.0.Alpha1
>
>
> The wildfly server currently terminates immediately in response to a TERM signal. To achieve a clean shutdown requires invoking the CLI tooling. This is particularly problematic in container environments like kubernetes where the container process (wildfly in this case) is going to get a TERM signal when the container needs to be moved.
> While it's possible to wrapper the process and handle the TERM and then invoke the CLI, it would be preferable for the server process itself to cleanly handle a TERM signal by waiting for in-flight requests to complete (w/ some grace period of course).
> Having this as configurable behavior would be good if there are backwards compatibility concerns about introducing this behavior change.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (WFCORE-3073) Handle TERM cleanly
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3073?page=com.atlassian.jira.plugi... ]
Brian Stansberry updated WFCORE-3073:
-------------------------------------
Fix Version/s: 4.0.0.Alpha1
> Handle TERM cleanly
> -------------------
>
> Key: WFCORE-3073
> URL: https://issues.jboss.org/browse/WFCORE-3073
> Project: WildFly Core
> Issue Type: Feature Request
> Components: Domain Management
> Reporter: Ben Parees
> Assignee: Brian Stansberry
> Fix For: 4.0.0.Alpha1
>
>
> The wildfly server currently terminates immediately in response to a TERM signal. To achieve a clean shutdown requires invoking the CLI tooling. This is particularly problematic in container environments like kubernetes where the container process (wildfly in this case) is going to get a TERM signal when the container needs to be moved.
> While it's possible to wrapper the process and handle the TERM and then invoke the CLI, it would be preferable for the server process itself to cleanly handle a TERM signal by waiting for in-flight requests to complete (w/ some grace period of course).
> Having this as configurable behavior would be good if there are backwards compatibility concerns about introducing this behavior change.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (WFCORE-3123) ManagementXml is parsing and marshaling the full set of resource regardless of document type
by Brian Stansberry (JIRA)
Brian Stansberry created WFCORE-3123:
----------------------------------------
Summary: ManagementXml is parsing and marshaling the full set of resource regardless of document type
Key: WFCORE-3123
URL: https://issues.jboss.org/browse/WFCORE-3123
Project: WildFly Core
Issue Type: Bug
Components: Domain Management
Reporter: Brian Stansberry
The set of legal elements in the "management" part of a config file is different for domain.xml vs host and standalone.xml. For domain.xml it's meant to be limited to rbac. But ManagementXml does not reflect that, making it easier to introduce mistakes like WFCORE-3121.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (WFLY-9150) The enable-elytron.cli scripts are using an invalid domain wide /core-service=management/access=identity resource
by Brian Stansberry (JIRA)
Brian Stansberry created WFLY-9150:
--------------------------------------
Summary: The enable-elytron.cli scripts are using an invalid domain wide /core-service=management/access=identity resource
Key: WFLY-9150
URL: https://issues.jboss.org/browse/WFLY-9150
Project: WildFly
Issue Type: Bug
Components: Domain Management, Security
Reporter: Brian Stansberry
Assignee: Brian Stansberry
Priority: Blocker
See WFCORE-3121. This call in the enable-elytron.cli scripts:
{code}
/core-service=management/access=identity:add(security-domain=ManagementDomain)
{code}
needs to be
{code}
/host=master/core-service=management/access=identity:add(security-domain=ManagementDomain)
{code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (WFCORE-3122) Elytron is registering resource /core-service=management/access=identity on a HostController
by Brian Stansberry (JIRA)
Brian Stansberry created WFCORE-3122:
----------------------------------------
Summary: Elytron is registering resource /core-service=management/access=identity on a HostController
Key: WFCORE-3122
URL: https://issues.jboss.org/browse/WFCORE-3122
Project: WildFly Core
Issue Type: Bug
Components: Domain Management, Security
Reporter: Brian Stansberry
Assignee: Brian Stansberry
Priority: Blocker
Fix For: 3.0.0.CR1
The Elytron integration added a resource registration for /core-service=management/access=identity on an HC. It should only be registered at /host=*/core-service=management/access=identity
The domain-wide /core-service=management resource MUST NOT HAVE CHILDREN REGISTERED other than access-authorization. It is not the place to configure HC-specific behavior.
I see use of this resource in enable-elytron.cli scripts used to configure the testsuite. At least in the one in WF full's testsuite/shared; I'm guessing elsewhere too. That must be changed.
If use of this domain-wide resource has ended up in any docs those must be corrected.
[~dlofthouse] FYI.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (WFCORE-3121) Elytron is registering resource /core-service=management/access=identity on a HostController
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3121?page=com.atlassian.jira.plugi... ]
Brian Stansberry updated WFCORE-3121:
-------------------------------------
Fix Version/s: 3.0.0.CR1
> Elytron is registering resource /core-service=management/access=identity on a HostController
> --------------------------------------------------------------------------------------------
>
> Key: WFCORE-3121
> URL: https://issues.jboss.org/browse/WFCORE-3121
> Project: WildFly Core
> Issue Type: Bug
> Components: Domain Management, Security
> Reporter: Brian Stansberry
> Assignee: Brian Stansberry
> Priority: Blocker
> Fix For: 3.0.0.CR1
>
>
> The Elytron integration added a resource registration for /core-service=management/access=identity on an HC. It should only be registered at /host=*/core-service=management/access=identity
> The domain-wide /core-service=management resource MUST NOT HAVE CHILDREN REGISTERED other than access-authorization. It is not the place to configure HC-specific behavior.
> I see use of this resource in enable-elytron.cli scripts used to configure the testsuite. At least in the one in WF full's testsuite/shared; I'm guessing elsewhere too. That must be changed.
> If use of this domain-wide resource has ended up in any docs those must be corrected.
> [~dlofthouse] FYI.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (WFCORE-3121) Elytron is registering resource /core-service=management/access=identity on a HostController
by Brian Stansberry (JIRA)
Brian Stansberry created WFCORE-3121:
----------------------------------------
Summary: Elytron is registering resource /core-service=management/access=identity on a HostController
Key: WFCORE-3121
URL: https://issues.jboss.org/browse/WFCORE-3121
Project: WildFly Core
Issue Type: Bug
Components: Domain Management, Security
Reporter: Brian Stansberry
Assignee: Brian Stansberry
Priority: Blocker
The Elytron integration added a resource registration for /core-service=management/access=identity on an HC. It should only be registered at /host=*/core-service=management/access=identity
The domain-wide /core-service=management resource MUST NOT HAVE CHILDREN REGISTERED other than access-authorization. It is not the place to configure HC-specific behavior.
I see use of this resource in enable-elytron.cli scripts used to configure the testsuite. At least in the one in WF full's testsuite/shared; I'm guessing elsewhere too. That must be changed.
If use of this domain-wide resource has ended up in any docs those must be corrected.
[~dlofthouse] FYI.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months