Skip to content

Commit

Permalink
Correct downloads for GCS and ADLS deltas
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgrote committed Nov 22, 2024
1 parent 3625220 commit 9cf8c6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class ADLSSync(
if (latestFileKey.isNotBlank()) {
val local = File(localDirectory, latestFileKey).path
downloadFrom(
latestFileKey,
File(prefix, latestFileKey).path,
local,
)
local
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class GCSSync(
if (latestFileKey.isNotBlank()) {
val local = File(localDirectory, latestFileKey).path
downloadFrom(
latestFileKey,
File(prefix, latestFileKey).path,
local,
)
local
Expand Down

0 comments on commit 9cf8c6c

Please sign in to comment.