get the osd dump part of a pool
(self, pool)
| 2093 | time.sleep(5) |
| 2094 | |
| 2095 | def get_pool_dump(self, pool): |
| 2096 | """ |
| 2097 | get the osd dump part of a pool |
| 2098 | """ |
| 2099 | osd_dump = self.get_osd_dump_json() |
| 2100 | for i in osd_dump['pools']: |
| 2101 | if i['pool_name'] == pool: |
| 2102 | return i |
| 2103 | assert False |
| 2104 | |
| 2105 | def get_config(self, service_type, service_id, name): |
| 2106 | """ |