Asynchronously load the service context from config. Calling this function is needed if default_context_cache was not provided to the constructor.
(self)
| 149 | ) |
| 150 | |
| 151 | async def initialize(self): |
| 152 | """Asynchronously load the service context from config. |
| 153 | Calling this function is needed if default_context_cache was not provided to the constructor.""" |
| 154 | await self.default_context_cache.load_from_config(self.config) |
| 155 | |
| 156 | @staticmethod |
| 157 | def clean_cache(): |
no test coverage detected