Hello,
I am trying to debug something in Ray.
I have set up the code like this:
while len(dataframes) < len(oi):
ready, not_ready = ray.wait(oi)
print(ready)
dataframes += ray.get(ready)
but I have realised that the printed ready object references are duplicated - I expected them to be unique with every iteration. I am probably doing something wrong, any clarificatino is appreciated thank you!