Method
run
(
self,
proxy_auth=None, # type: Optional[str]
dump_headers=False, # type: bool
)
Source from the content-addressed store, hash-verified
| 138 | |
| 139 | @contextmanager |
| 140 | def run( |
| 141 | self, |
| 142 | proxy_auth=None, # type: Optional[str] |
| 143 | dump_headers=False, # type: bool |
| 144 | ): |
| 145 | # type: (...) -> Iterator[Tuple[int, str]] |
| 146 | |
| 147 | with self.reverse(targets=(), proxy_auth=proxy_auth, dump_headers=dump_headers) as ( |
| 148 | port, |
| 149 | cert, |
| 150 | ): |
| 151 | yield port, cert |
Callers
nothing calls this directly
Tested by
no test coverage detected