Skip to content

Commit

Permalink
fix toString on config
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxcapades committed Oct 13, 2022
1 parent 4f5e57a commit 9ab7a01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "org.veupathdb.lib.s3"
version = "0.7.1"
version = "0.7.2"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
2 changes: 2 additions & 0 deletions src/main/kotlin/org/veupathdb/lib/s3/s34k/S3Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ data class S3Config(
override fun toString(): String {
return "S3Config {\n" +
" url = $url,\n" +
" port = $port,\n" +
" secure = $secure,\n" +
" accessKey = ***,\n" +
" secretKey = ***,\n" +
" region = $region\n" +
Expand Down

0 comments on commit 9ab7a01

Please sign in to comment.