I am not 100% certain but it may be a bug, or an error that is not detected.
In the source, if the computation of `out` (when computing CFI) leads to an error, `out` is supposed to be a try-error (due to the method, not a bug per se) that can be detected, and then you will not see the affected fit measures, without any error message.
However, in your case, it seems that somehow something's wrong in computing `out` but did not result in an error, resulting in the error message you received.
You can check whether it is due to fit measures by removing `fit.measures=T` when calling summary():
summary (early_ltask1_v2_fit,standardized=T)
If the error is due to fit measures computation, this should not result in an error (unless there are other issues).
You can also run this:
fitMeasures(early_ltask1_v2_fit, "cfi", output = "text")
This asks for *only* the CFI. My guess is, this will result in the same error message you received.
You may consider creating an issue at GitHub:
Hope this helps.
-- Shu Fai