Predefined Ingredients should take precedence over state Ingredients
Tim-Linschoten opened this issue · 0 comments
Tim-Linschoten commented
Bug: (RecipeRuntime.scala line 99)
// a map of all ingredients val allIngredients: Map[String, Value] = interaction.predefinedParameters ++ state.ingredients + recipeInstanceId + processId
Solution:
// a map of all ingredients val allIngredients: Map[String, Value] = state.ingredients ++ interaction.predefinedParameters + recipeInstanceId + processId