We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 225f6fd commit 885f6a6Copy full SHA for 885f6a6
scenariorun/src/main/kotlin/com/cosmotech/scenariorun/dataset/DatasetUtils.kt
@@ -86,7 +86,8 @@ private fun addParameterValue(
86
internal fun getDatasetIdListFromValue(paramValue: String): List<String> {
87
if (paramValue.startsWith("[")) {
88
if (!(paramValue.last().equals(']'))) {
89
- throw CsmClientException("Malformed dataset id list: must start with [ and end with ]")
+ throw CsmClientException(
90
+ "Malformed dataset id list, must start with [ and end with ]: ${paramValue}")
91
}
92
val datasetIds = paramValue.substring(1, paramValue.length - 1)
93
return datasetIds.split(",")
0 commit comments