I should probably point out that you got that result because you're assigning the
output of an object method
(filter_by_regex
) to ilo
, rather than making ilo
an object by instantiating it on its own. Because of this, you cannot pass ilo
to curator.Replicas
, because it's not actually an IndexList
object.