-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version bumps BT-332 #6456
Version bumps BT-332 #6456
Changes from all commits
c20cb5c
94a71cc
64a7a6c
89fc0f4
884b60c
cf6c8a1
c8612fc
87bad49
ad20b9a
03ba4f9
cc44ec5
0d9444f
c1d5b46
ff72660
49ac5a6
56d20b1
a016112
87ac4ed
2856d87
aabcd9f
f488579
f61f182
66240c8
71ab92d
9bcfba6
9dc427c
70c840d
3d9e071
390365c
65217d3
442cdf1
5048451
a370245
efa726f
863a227
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Enable auto-env through the sdkman_auto_env config | ||
# Add key=value pairs of SDKs to use below | ||
java=11.0.10.hs-adpt | ||
java=11.0.11.hs-adpt |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Quiet warnings about missing sentry DSNs by providing an empty string | ||
dsn= | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🏆 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.4.9 | ||
sbt.version=1.5.5 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,10 @@ case class OssBatchDeleteCommand( | |
override val file: OssPath, | ||
override val swallowIOExceptions: Boolean | ||
) extends IoDeleteCommand(file, swallowIOExceptions) with OssBatchIoCommand[Unit, Void] { | ||
def operation: Unit = file.ossClient.deleteObject(file.bucket, file.key) | ||
def operation: Unit = { | ||
file.ossClient.deleteObject(file.bucket, file.key) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this not return There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
No. It returns a |
||
() | ||
} | ||
override protected def mapOssResponse(response: Void): Unit = () | ||
override def commandDescription: String = s"OssBatchDeleteCommand file '$file' swallowIOExceptions '$swallowIOExceptions'" | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,6 +98,7 @@ trait OssNioUtilSpec extends AnyFlatSpecLike with CromwellTimeoutSpec with Mocki | |
OssStorageRetry.from( | ||
() => ossClient.deleteObject(path.bucket, path.key) | ||
) | ||
() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same question as in |
||
} | ||
|
||
def writeObject(path: OssStoragePath): Unit = { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2 horicromtal papis for a local seems like a deal