We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6873c14 commit c384208Copy full SHA for c384208
installation_and_upgrade/ibex_install_utils/tasks/server_tasks.py
@@ -735,7 +735,10 @@ def setup_log_rotation(self) -> None:
735
"""Sets up instrument log rotation via windows scheduled task."""
736
python = r"c:\instrument\apps\python3\python.exe"
737
logrotate = r"c:\instrument\apps\epics\utils\logrotate.py"
738
- task_cmd = f"cmd.exe /c start /min {python} {logrotate} > C:\Instrument\Var\logs\schtasks\logrotate.log 2>&1"
+ task_cmd = (
739
+ f"cmd.exe /c start /min {python} {logrotate} "
740
+ "> C:\Instrument\Var\logs\schtasks\logrotate.log 2>&1"
741
+ )
742
743
admin_commands = AdminCommandBuilder()
744
admin_commands.add_command(
0 commit comments