Skip to content

Commit

Permalink
fix bsub config
Browse files Browse the repository at this point in the history
  • Loading branch information
hpratt committed Oct 21, 2023
1 parent 4d1fe79 commit dee534c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group = "io.krews"
version = "0.14.5"
version = "0.14.6"

repositories {
maven { setUrl("https://dl.bintray.com/kotlin/kotlin-eap") }
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/krews/config/BaseConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data class TaskConfig (
// Task level Slurm executor configuration
val slurm: SlurmTaskConfig? = null,
// Task level Slurm executor configuration
val bsub: SlurmTaskConfig? = null,
val bsub: BsubTaskConfig? = null,
// The maximum allowed parallelism for this task
val parallelism: Parallelism = UnlimitedParallelism,
// The number of tasks "executions" that will be run with the same job / vm.
Expand All @@ -29,7 +29,7 @@ data class WorkflowConfig (
// Slurm executor configuration
val slurm: SlurmWorkflowConfig? = null,
// BSUB executor configuration
val bsub: SlurmWorkflowConfig? = null,
val bsub: BsubWorkflowConfig? = null,
// The maximum allowed parallelism for the system as a whole. Also see per-task parallelism
val parallelism: Parallelism = UnlimitedParallelism,
// The concurrency for task setup, status checking, and cleanup
Expand Down

0 comments on commit dee534c

Please sign in to comment.