(pl: integration_pb::JoinEvent)
| 315 | } |
| 316 | |
| 317 | async fn join_event(pl: integration_pb::JoinEvent) { |
| 318 | let integration = INTEGRATION.read().await; |
| 319 | if let Err(e) = integration.as_ref().unwrap().join_event(&pl).await { |
| 320 | error!(error = %e, "Join event error"); |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | async fn ack_event(pl: integration_pb::AckEvent) { |
| 325 | let integration = INTEGRATION.read().await; |
no test coverage detected