Skip to content

Commit ea9dc5d

Browse files
author
Amit Kumar Das
authored
fix(recipe): fix recipe constructor to use config field (#179)
Signed-off-by: AmitKumarDas <[email protected]>
1 parent c5fee84 commit ea9dc5d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pkg/recipe/recipe.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,9 @@ func NewRunner(config RunnerConfig) *Runner {
8787
RecipeStatus: &types.RecipeStatus{
8888
TaskResults: map[string]types.TaskResult{},
8989
},
90-
Retry: retry,
91-
fixture: config.Fixture,
90+
Retry: retry,
91+
fixture: config.Fixture,
92+
UpdateRecipeWithRetriesFn: config.UpdateRecipeWithRetriesFn,
9293
}
9394
}
9495

0 commit comments

Comments
 (0)