Check if the server is running cleanly
(status_file: str)
| 719 | |
| 720 | |
| 721 | def is_running(status_file: str) -> bool: |
| 722 | """Check if the server is running cleanly""" |
| 723 | try: |
| 724 | get_status(status_file) |
| 725 | except BadStatus: |
| 726 | return False |
| 727 | return True |
| 728 | |
| 729 | |
| 730 | # Run main(). |
no test coverage detected
searching dependent graphs…