Skip to content

Commit

Permalink
MD-1497: Fix copy source data dir (#267)
Browse files Browse the repository at this point in the history
Cherry-picking the data copy fix into 1.10.0
  • Loading branch information
Agirish authored Mar 28, 2017
1 parent 7675bf3 commit e8b366c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ public void cancel() {
@Override
public void run() {
try {
Path src = new Path(CWD + "/" + drillTestData + "/" + datasource.src);
Path src = new Path(CWD + "/" + drillTestDataDir + "/" + datasource.src);
Path dest = new Path(drillTestData, datasource.dest);
dfsCopy(src, dest, fsMode);
} catch (IOException e) {
Expand Down

0 comments on commit e8b366c

Please sign in to comment.