(&self, run_id: &str, session_id: &str, reason: Option<&str>)
| 881 | } |
| 882 | |
| 883 | async fn record_run_cancelled(&self, run_id: &str, session_id: &str, reason: Option<&str>) { |
| 884 | self.publish_run_cancelled(run_id, session_id, reason).await; |
| 885 | } |
| 886 | } |
| 887 | |
| 888 | #[cfg(test)] |
no test coverage detected