[JBoss JIRA] Created: (SHRINKWRAP-153) ZIP Export does not shut down the internal ExecutorService
by Andrew Lee Rubinger (JIRA)
ZIP Export does not shut down the internal ExecutorService
----------------------------------------------------------
Key: SHRINKWRAP-153
URL: https://jira.jboss.org/jira/browse/SHRINKWRAP-153
Project: ShrinkWrap
Issue Type: Bug
Reporter: Andrew Lee Rubinger
Assignee: Andrew Lee Rubinger
Fix For: 1.0.0-alpha-8
During ZIP Export, we use the archive's configured ExecutorService to submit the encoding task, letting the reader continue in the Main thread. This enables an encoding-on-demand which limits resource starvation (only encode as the archive is read) and keeps us from generating OOME as defined by SHRINKWRAP-137.
There's currently no mechanism to shut down the ES however, leaving non-daemon threads hanging around which prevent the JVM from shutting down. When the task is completed, ensure the service shuts down.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 11 months
[JBoss JIRA] Created: (SHRINKWRAP-150) add resource from Java package
by Dan Allen (JIRA)
add resource from Java package
------------------------------
Key: SHRINKWRAP-150
URL: https://jira.jboss.org/jira/browse/SHRINKWRAP-150
Project: ShrinkWrap
Issue Type: Feature Request
Components: api
Affects Versions: 1.0.0.alpha-7
Reporter: Dan Allen
Priority: Minor
Fix For: 1.0.0-alpha-8
Particularly in testing environments, resources are often organized under the same package as the class. However, when referring to a "qualified resource" (a resource located in a package), the package delimiter must be changed from the dot (.) to a forward slash (/). ShrinkWrap does not currently provide a convenient way to include such a resource, leaving the burden on the developer to do the conversion. Thus, we are starting to see cases like the following appear quite often in Arquillian tests:
.addResource(FooTest.class.getPackage().getName().replaceAll("\\.", "/") + "/bar.xml");
I would like to propose the following additions to ResourceContainer and ManifestContainer, respectively, to clean up this scenario:
ResourceContainer#addResource(Package, String)
ResourceContainer#addResource(Package, String, ArchivePath)
ManifestContainer#addManifestResource(Package, String)
ManifestContainer#addManifestResource(Package, String, ArchivePath)
Please add any other parallel methods, as needed.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 11 months