(id: UUID)
| 63 | |
| 64 | #[update(name = "try_execute_request", hidden = true)] |
| 65 | async fn try_execute_request(id: UUID) -> Result<(), RequestExecuteError> { |
| 66 | CONTROLLER.try_execute_request(id).await |
| 67 | } |
| 68 | |
| 69 | const RATE_LIMITER_RESOLUTION: Duration = Duration::from_secs(10); |
| 70 | const RATE_LIMITER_TIME_WINDOW: Duration = Duration::from_secs(300); |
nothing calls this directly
no test coverage detected