(self)
| 296 | log_process_stats=log_process_stats) |
| 297 | |
| 298 | def execute(self): |
| 299 | FakeCommand.counter += 1 |
| 300 | return output.Output( |
| 301 | 0, #return_code, |
| 302 | False, # TODO: Figure out timeouts. |
| 303 | f'fake stdout {FakeCommand.counter}', |
| 304 | f'fake stderr {FakeCommand.counter}', |
| 305 | -1, # No pid available. |
| 306 | start_time=1, |
| 307 | end_time=100, |
| 308 | ) |