(self)
| 546 | """ |
| 547 | |
| 548 | def get_http_client(self) -> AsyncHTTPClient: |
| 549 | return AsyncHTTPClient(force_instance=True, defaults=dict(validate_cert=False)) |
| 550 | |
| 551 | def get_httpserver_options(self) -> Dict[str, Any]: |
| 552 | return dict(ssl_options=self.get_ssl_options()) |
nothing calls this directly
no test coverage detected