(
application_id: Uuid,
vars: &HashMap<String, String>,
pl: &integration::JoinEvent,
)
| 228 | } |
| 229 | |
| 230 | pub async fn join_event( |
| 231 | application_id: Uuid, |
| 232 | vars: &HashMap<String, String>, |
| 233 | pl: &integration::JoinEvent, |
| 234 | ) { |
| 235 | tokio::spawn({ |
| 236 | let vars = vars.clone(); |
| 237 | let pl = pl.clone(); |
| 238 | |
| 239 | async move { |
| 240 | if let Err(err) = _join_event(application_id, &vars, &pl).await { |
| 241 | warn!(application_id = %application_id, error = %err.full(), "Join event error"); |
| 242 | } |
| 243 | } |
| 244 | }); |
| 245 | } |
| 246 | |
| 247 | async fn _join_event( |
| 248 | application_id: Uuid, |
nothing calls this directly
no test coverage detected