Skip to content

Commit

Permalink
Merge pull request #6030 from baranowb/WFCORE-6848
Browse files Browse the repository at this point in the history
[WFCORE-6848] Fix remote deployment distribution double scheduling
  • Loading branch information
yersan authored Jun 6, 2024
2 parents 04007f5 + 71ac29a commit 458dc20
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ private List<File> getChildFiles(final File base) {

private void getChildFiles(final File base, final List<File> childFiles) {
for (File child : base.listFiles()) {
childFiles.add(child);
if (child.isFile() || isEmpty(child)) {
childFiles.add(child);
} else {
Expand Down

0 comments on commit 458dc20

Please sign in to comment.