Shutdown the running orca server, if any, and reset the orca status to unvalidated. This command is only needed if the desired orca executable is changed during an interactive session. Returns ------- None
()
| 1140 | |
| 1141 | |
| 1142 | def reset_status(): |
| 1143 | """ |
| 1144 | Shutdown the running orca server, if any, and reset the orca status |
| 1145 | to unvalidated. |
| 1146 | |
| 1147 | This command is only needed if the desired orca executable is changed |
| 1148 | during an interactive session. |
| 1149 | |
| 1150 | Returns |
| 1151 | ------- |
| 1152 | None |
| 1153 | """ |
| 1154 | shutdown_server() |
| 1155 | status._props["executable_list"] = None |
| 1156 | status._props["version"] = None |
| 1157 | status._props["state"] = "unvalidated" |
| 1158 | |
| 1159 | |
| 1160 | # Initialze process control variables |
no test coverage detected