Initialize the MongoDB Connector
(self, mongo_connector)
| 51 | return logging.getLogger(__name__) |
| 52 | |
| 53 | def __init__(self, mongo_connector): |
| 54 | """ |
| 55 | Initialize the MongoDB Connector |
| 56 | """ |
| 57 | self._logger = self._log() |
| 58 | self.mongo_connector = mongo_connector |
| 59 | self.zone_collection = mongo_connector.get_zone_connection() |
| 60 | |
| 61 | def _check_valid_status(self, status): |
| 62 | if ( |
nothing calls this directly
no test coverage detected