Skip to content

Commit

Permalink
Fixes error message.
Browse files Browse the repository at this point in the history
Signed-off-by: Ralph Gasser <[email protected]>
  • Loading branch information
ppanopticon committed May 24, 2024
1 parent b94100b commit 4580a9d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class IngestionPipelineBuilder(val config: IngestionConfig) {
stages[it.key] = root
for (operation in this.config.operations) {
if (!stages.containsKey(operation.key)) {
stages[operation.key] = Operation(operation.key, operation.value.operator, config.operators[operation.value.operator] ?: throw IllegalArgumentException("Undefined operator '${it.value.operator}'"), operation.value.merge)
stages[operation.key] = Operation(operation.key, operation.value.operator, config.operators[operation.value.operator] ?: throw IllegalArgumentException("Undefined operator '${operation.value.operator}'"), operation.value.merge)
}
for (inputKey in operation.value.inputs) {
if (!stages.containsKey(inputKey)) {
Expand Down

0 comments on commit 4580a9d

Please sign in to comment.