Skip to content

Remove restart VIs step #269

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions installation_and_upgrade/ibex_install_utils/install_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ def run_instrument_install(self) -> None:
self._server_tasks.setup_calibrations_repository()
self._server_tasks.update_calibrations_repository()
self._system_tasks.clear_or_reapply_hotfixes()
self._system_tasks.restart_vis()
self._server_tasks.install_wiring_tables()
self._server_tasks.configure_motion()
self._system_tasks.add_nagios_checks()
Expand Down Expand Up @@ -218,7 +217,6 @@ def run_instrument_deploy_post_start(self) -> None:
Current the server can not be started in this python script.
"""
self._client_tasks.start_ibex_gui()
self._system_tasks.restart_vis()
self._client_tasks.perform_client_tests()
self._server_tasks.perform_server_tests()
self._server_tasks.run_config_checker()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,15 +166,6 @@ def configure_com_ports(self) -> None:
"- etc.\n"
)

@task("Restart VIs")
def restart_vis(self) -> None:
"""
Restart Vis which were running on upgrade start.
"""
self.prompt.prompt_and_raise_if_not_yes(
"Please restart any VIs that were running at the start of the upgrade"
)

@task("Update Instrument List")
def update_instlist(self) -> None:
"""
Expand Down
Loading