diff options
author | xengineering <me@xengineering.eu> | 2024-03-12 18:25:48 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-24 10:10:54 +0100 |
commit | 0520cf604c4dc3279d76e1dd4b49c275dd54611e (patch) | |
tree | e5c7d1a6353a0ae8e12144fc95ee036921327f12 /model | |
parent | 605c9e321b442daf1794ae8c045b1efb75617c92 (diff) | |
download | ceres-0520cf604c4dc3279d76e1dd4b49c275dd54611e.tar ceres-0520cf604c4dc3279d76e1dd4b49c275dd54611e.tar.zst ceres-0520cf604c4dc3279d76e1dd4b49c275dd54611e.zip |
model: Crash on failed test recipe injection
This error used to be silent. Since it is just about test recipes and
thus a debugging environment it is best to directly give up and log the
error.
Diffstat (limited to 'model')
-rw-r--r-- | model/database.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/model/database.go b/model/database.go index 265b438..22a924a 100644 --- a/model/database.go +++ b/model/database.go @@ -52,7 +52,10 @@ func InjectTestRecipes() { recipes := RecipeTestData() for _, recipe := range recipes { - recipe.Create() + err := recipe.Create() + if err != nil { + log.Fatalf("Failed to inject test recipe: %v\n", err) + } } } |