From 8f8cecf99194c8bb44f25a2df79dfdef9e6e31c2 Mon Sep 17 00:00:00 2001 From: hpratt Date: Sat, 21 Oct 2023 21:22:00 -0400 Subject: [PATCH] switch bsub time type --- build.gradle.kts | 2 +- src/main/kotlin/krews/config/BsubConfig.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 4926b05..1b74c8a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,7 +13,7 @@ plugins { } group = "io.krews" -version = "0.14.8" +version = "0.14.9" repositories { maven { setUrl("https://dl.bintray.com/kotlin/kotlin-eap") } diff --git a/src/main/kotlin/krews/config/BsubConfig.kt b/src/main/kotlin/krews/config/BsubConfig.kt index 212cfb1..bb03813 100644 --- a/src/main/kotlin/krews/config/BsubConfig.kt +++ b/src/main/kotlin/krews/config/BsubConfig.kt @@ -18,7 +18,7 @@ data class BsubTaskConfig( // Memory capacity. Can be used to override the runtime value. val mem: String? = null, // Time limit on the run time for the job in minutes. - val time: Int? = null, + val time: String? = null, // SBatch partition to use. val partition: String? = null, // Additional bsub arguments