Skip to content

Commit

Permalink
increase the sleeps!
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxcapades committed Sep 25, 2024
1 parent b70451b commit a8ab865
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
7 changes: 2 additions & 5 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
plugins {
kotlin("jvm")
id("org.jetbrains.dokka") version "1.9.20"
java
`maven-publish`
}

group = "org.veupathdb.lib"
version = "1.8.3"
version = "1.8.4"


dependencies {
Expand All @@ -16,9 +15,7 @@ dependencies {
api("org.slf4j:slf4j-api:1.7.36")

// Jackson
implementation(platform("com.fasterxml.jackson:jackson-bom:2.16.0"))
implementation("com.fasterxml.jackson.core:jackson-databind")
implementation("org.veupathdb.lib:jackson-singleton:3.2.0")
implementation("org.veupathdb.lib:jackson-singleton:3.2.1")

// DB
implementation("com.zaxxer:HikariCP:5.1.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ internal object S3 {
private fun minioObjectDeleteHack(obj: S3Object) {
obj.delete()

val sleepMillis = 100L
val maxSleeps = 15 // 1.5 seconds
val sleepMillis = 1000L
val maxSleeps = 15 // 15 seconds

var sleepCounter = 0

Expand Down
2 changes: 1 addition & 1 deletion readme.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ image::docs/assets/overview.png[]
[source, kotlin]
----
dependencies {
implementation("org.veupathdb.lib:compute-platform:1.8.3")
implementation("org.veupathdb.lib:compute-platform:1.8.4")
}
----

Expand Down

0 comments on commit a8ab865

Please sign in to comment.