You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line sets the single_image_faults to an empty list. And then later that is returned as the overall list of faults for that result. But the original list of faults (stored in the variable faults) needs to be merged with that.
I would recommend replacing the referenced line with the following, or something to this effect. Copying the previous faults list as a starting point for the single_image_faults variable.
single_image_faults = faults[:]
The text was updated successfully, but these errors were encountered:
there's a chance i'm misunderstanding something in this bit of code. But some local testing on my part confirms that when I use post-processors, the /status/ endpoint never returns the expected gen_metadata.
hordelib/hordelib/horde.py
Line 1367 in d0158db
This line sets the single_image_faults to an empty list. And then later that is returned as the overall list of faults for that result. But the original list of faults (stored in the variable
faults
) needs to be merged with that.I would recommend replacing the referenced line with the following, or something to this effect. Copying the previous faults list as a starting point for the single_image_faults variable.
single_image_faults = faults[:]
The text was updated successfully, but these errors were encountered: