lantzen commented on code in PR #21271:
URL: https://github.com/apache/camel/pull/21271#discussion_r2772655983
##########
components/camel-zipfile/src/main/java/org/apache/camel/dataformat/zipfile/ZipIterator.java:
##########
@@ -192,6 +208,10 @@ public void close() throws IOException {
IOHelper.close(zipInputStream);
zipInputStream = null;
currentEntry = null;
+
+ for (CachedOutputStream cos : cachedOutputStreamsToClose) {
+ cos.close();
Review Comment:
Is it possible to update the PR @davsclaus or do I need to create a new one
from my fork?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]