(pl: integration_pb::StatusEvent)
| 336 | } |
| 337 | |
| 338 | async fn status_event(pl: integration_pb::StatusEvent) { |
| 339 | let integration = INTEGRATION.read().await; |
| 340 | if let Err(e) = integration.as_ref().unwrap().status_event(&pl).await { |
| 341 | error!(error = %e, "Status event error"); |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | async fn log_event(pl: integration_pb::LogEvent) { |
| 346 | let integration = INTEGRATION.read().await; |
no test coverage detected