Skip to content

Commit

Permalink
don't fail on delete empty workspace'
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxcapades committed Oct 24, 2022
1 parent 95c9de0 commit a556e66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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"
version = "1.3.2"
version = "1.3.3"

repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ object AsyncPlatform {
QueueDB.submitJob(queue, job.jobID, job.config?.toString(), job.inputs.keys)

// Remove any previous workspace at this location
S3.deleteWorkspace(job.jobID)
S3.deleteWorkspace(job.jobID, false)

// Create a workspace for the new job in S3
S3.submitWorkspace(job.jobID, job.config, job.inputs)
Expand Down

0 comments on commit a556e66

Please sign in to comment.