From 1e69e306e12513c13e15bf57a642edcfc18ab966 Mon Sep 17 00:00:00 2001 From: rusefi Date: Sat, 23 May 2020 18:01:40 -0400 Subject: [PATCH] partial rollback --- firmware/controllers/math/engine_math.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/controllers/math/engine_math.cpp b/firmware/controllers/math/engine_math.cpp index f501b81bb1..3dd61079a6 100644 --- a/firmware/controllers/math/engine_math.cpp +++ b/firmware/controllers/math/engine_math.cpp @@ -386,8 +386,8 @@ int getCylinderId(int index DECLARE_ENGINE_PARAMETER_SUFFIX) { } if (index < 0 || index >= firingOrderLength) { - // todo: open question when does this happen? reproducible with functional tests? - firmwareError(CUSTOM_ERR_6686, "index %d", index); + // May 2020 this somehow still happens with functional tests, maybe race condition? + warning(CUSTOM_ERR_6686, "firing order index %d", index); return 1; }