Skip to content

Commit 8ee3fef

Browse files
authored
Merge pull request #1041 from atlanhq/FT-786
Correct downloads for GCS and ADLS deltas
2 parents 3625220 + 9cf8c6c commit 8ee3fef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: package-toolkit/runtime/src/main/kotlin/com/atlan/pkg/objectstore/ADLSSync.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class ADLSSync(
156156
if (latestFileKey.isNotBlank()) {
157157
val local = File(localDirectory, latestFileKey).path
158158
downloadFrom(
159-
latestFileKey,
159+
File(prefix, latestFileKey).path,
160160
local,
161161
)
162162
local

Diff for: package-toolkit/runtime/src/main/kotlin/com/atlan/pkg/objectstore/GCSSync.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class GCSSync(
104104
if (latestFileKey.isNotBlank()) {
105105
val local = File(localDirectory, latestFileKey).path
106106
downloadFrom(
107-
latestFileKey,
107+
File(prefix, latestFileKey).path,
108108
local,
109109
)
110110
local

0 commit comments

Comments
 (0)