Skip to content

Commit

Permalink
Merge pull request #654 from atlanhq/DVX-385
Browse files Browse the repository at this point in the history
(Experimental) Custom package object storage support
  • Loading branch information
cmgrote committed May 23, 2024
2 parents 9fd111a + 79ba970 commit c6aa89d
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import java.nio.file.Paths
import java.util.concurrent.ThreadLocalRandom
import java.util.concurrent.atomic.AtomicLong
import kotlin.io.path.isDirectory
import kotlin.io.path.listDirectoryEntries
import kotlin.io.path.name
import kotlin.io.path.readText
import kotlin.math.round
Expand Down Expand Up @@ -498,9 +497,7 @@ object Utils {
uploadResult
} else {
logger.info { "Cloud details: $cloudDetails" }
val files = Paths.get("/tmp/credentials").listDirectoryEntries()
logger.info { "Files: ${files.map { it.name }.toList()}" }
val contents = Paths.get("/tmp/credentials/$cloudDetails.json").readText()
val contents = Paths.get("tmp", "credentials", "success", "result-0.json").readText()
logger.info { "Content: $contents" }
// val defaultRegion = getEnvVar("AWS_S3_REGION")
// val defaultBucket = getEnvVar("AWS_S3_BUCKET_NAME")
Expand Down

0 comments on commit c6aa89d

Please sign in to comment.