You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
admin::on_call: Work around potential Rust v1.57.0-beta.1 bug
The fields in the `InvalidEvent` struct are used by the `Debug` implementation, which is used by the `anyhow!()` macro call in the `Event::send()` implementation.
The Rust v1.57.0-beta.1 compiler does not appear to agree on that though and marks these fields as unused. This PR adds `#[allow(dead_code)]` to work around the issue for now and fix our CI builds to unblock other updates.
0 commit comments