Skip to content

Commit ee0e940

Browse files
authored
remove the usage of pairingwindow and add a ingest_night attribute in the runtime_state instead (#181)
1 parent d4aee11 commit ee0e940

13 files changed

Lines changed: 1448 additions & 557 deletions

File tree

crates/fink-fat-engine/src/alerts/error.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,10 @@ pub enum InsertError {
5959
#[error("Duplicate dia_source_id: {0}")]
6060
DuplicateId(DiaSourceId),
6161
}
62+
63+
#[derive(Debug, Error)]
64+
pub enum AlertStoreError {
65+
/// The requested night ID was not found in the store.
66+
#[error("Night ID not found: {0}")]
67+
GetError(NightId),
68+
}

0 commit comments

Comments
 (0)