(maint) drop unneeded clear_pool helper

Given the way we're flushing redis (which seems super performant), we don't
need to clear pools any more at the beginning of tests.
This commit is contained in:
Rick Bradley 2016-06-01 14:55:10 -05:00
parent ea9fd004d6
commit 2fcd639882
2 changed files with 0 additions and 14 deletions

View file

@ -39,9 +39,3 @@ end
def fetch_vm(vm)
redis.hgetall("vmpooler__vm__#{vm}")
end
def clear_pool(pool)
['ready'].each do |state| # TODO add more states if desired
redis.del("vmpooler__#{state}__#{pool}")
end
end