-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Troubleshooter for Overwatcher (#37)
* Add some initial files * Merge branch 'main' into troubleshooter * Improve basic structure of the troubleshooter module * Try to fix building docker image for pull request * Attempt with ${{ github.head_ref || github.ref_name }} * Merge branch 'main' into troubleshooter * Add categorisation methods to the ErrorCode enum * Merge remote-tracking branch 'origin/main' into troubleshooter * Very basic but complete implementataion of the troubleshooter * Some tweaks to OverwatcherTask logging * Fix bug in twilight flats recipe for extra flats * Do not require overwatcher to be enabled for calibrations if dome does not change * Merge branch 'main' into troubleshooter * The troubleshooter blocks the observing loop while troubleshooting * Disable overwatcher and run cleanup in safety after closing dome * Add option to disable overwatcher on shutdown * Run a cleanup when disabling the observe loop with immediate=True * Add placeholder for emitting a critical error in the troubleshooter * Add MJD to the notification record in the DB * Merge branch 'main' into troubleshooter * Merge branch 'main' into troubleshooter * Add max_start_time to quick_cals and bias_sequence calibrations
- Loading branch information
Showing
11 changed files
with
415 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# | ||
# @Author: José Sánchez-Gallego ([email protected]) | ||
# @Date: 2024-11-05 | ||
# @Filename: __init__.py | ||
# @License: BSD 3-clause (http://www.opensource.org/licenses/BSD-3-Clause) | ||
|
||
from __future__ import annotations | ||
|
||
from .recipes import TroubleshooterRecipe | ||
from .troubleshooter import Troubleshooter |
Oops, something went wrong.