Find the number of active and clean pgs.
(self)
| 2717 | return num |
| 2718 | |
| 2719 | def get_num_active_clean(self): |
| 2720 | """ |
| 2721 | Find the number of active and clean pgs. |
| 2722 | """ |
| 2723 | pgs = self.get_pg_stats() |
| 2724 | return self._get_num_active_clean(pgs) |
| 2725 | |
| 2726 | def _get_num_active_clean(self, pgs): |
| 2727 | num = 0 |
no test coverage detected