Skip to content

utils.py: return instead of explicitly raising StopIteration for CadenceManager

Patrick Godwin requested to merge generators into master

This is an issue using python 3.7+, where raising StopIteration now explicitly raises a RuntimeError [1], and causes the streaming timeseries jobs to fail. The solution is to swap raise StopIteration with return [2].

Merge request reports