Skip to content

Commit

Permalink
[ADAM-1508] Use file name, not full path, with SparkFiles.get
Browse files Browse the repository at this point in the history
Resolves #1508.
  • Loading branch information
fnothaft authored and heuermh committed May 11, 2017
1 parent ea9ce6c commit f9b1ec8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ trait GenomicRDD[T, U <: GenomicRDD[T, U]] {
files
} else {
files.map(f => {
SparkFiles.get(f)
SparkFiles.get(new Path(f).getName())
})
}

Expand Down

0 comments on commit f9b1ec8

Please sign in to comment.