Skip to content
Merged
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 @@ -172,8 +172,8 @@ private boolean checkIfSourcesExists(List<String> sourceDirectories) {
File dir = new File(source);
if (!dir.isDirectory() || !dir.exists()) {
logger.warn("Cannot find source directory " + source + " for metadata copy. Please check if you configured agent" +
" properly and it generates all necessary directories. If you want to skipp copy from some source, please " +
"configure metadataCopy with disable stage you want to skipp.");
" properly and it generates all necessary directories. If you want to skip copy from some source, please " +
"configure metadataCopy with disable stage you want to skip.");
return false;
}
}
Expand Down
Loading