davsclaus commented on code in PR #26638:
URL: https://github.com/apache/camel/pull/26638#discussion_r4058111355
##########
components/camel-file/src/main/java/org/apache/camel/component/file/FileConsumer.java:
##########
@@ -458,6 +458,10 @@ private void doCreateStartDirectory(File file) {
boolean created = operations.buildDirectory(file.getPath(), absolute);
if (!created) {
LOG.warn("Cannot auto create starting directory: {}", file);
+ } else {
Review Comment:
Taken as suggested in 83f3887a9f1b: `Auto-created starting directory: {};
waiting for files` (it also pairs with the existing `Cannot auto create
starting directory` warning).
_Claude Code on behalf of @davsclaus_
##########
components/camel-file/src/main/java/org/apache/camel/component/file/FileConsumer.java:
##########
@@ -458,6 +458,10 @@ private void doCreateStartDirectory(File file) {
boolean created = operations.buildDirectory(file.getPath(), absolute);
if (!created) {
LOG.warn("Cannot auto create starting directory: {}", file);
Review Comment:
Shortened to one line in 83f3887a9f1b.
_Claude Code on behalf of @davsclaus_
--
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]