Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,17 @@ private void processFileUploadExecutorDefinitions(Component component , String a
FileUploadExecutorManager executorManager =
(FileUploadExecutorManager) fileUploadExecManagerTracker.getService();
if (executorManager == null) {
log.error("FileUploadExecutorManager service is not available");
if (log.isDebugEnabled()) {
log.debug("FileUploadExecutorManager service is not available. " +
"Skipping file upload executor registration for component: " + component.getName());
}
Comment thread
UmairStn marked this conversation as resolved.
log.warn("FileUploadExecutorManager service is unavailable. File upload executors will not be registered for component: " + component.getName());
return;
}
FileUploadExecutorConfig[] executorConfigs = component.getFileUploadExecutorConfigs();
if (log.isDebugEnabled()) {
log.debug("Processing file upload executor definitions for component: " + component.getName() +
" with " + executorConfigs.length + " configurations");
}
for (FileUploadExecutorConfig executorConfig : executorConfigs) {
String[] mappingActions = executorConfig.getMappingActionList();
for (String mappingAction : mappingActions) {
Expand Down