(self)
| 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()) |
| 553 | |
| 554 | def get_ssl_options(self) -> Dict[str, Any]: |
| 555 | """May be overridden by subclasses to select SSL options. |
nothing calls this directly
no test coverage detected