Merge pull request #329 from InoUno/pub-ratelimits

Make Session ratelimits accessible from outside of crate
This commit is contained in:
Igor Katson 2025-02-18 08:57:52 +00:00 committed by GitHub
commit fea00e2d18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -123,7 +123,7 @@ pub struct Session {
// Limits and throttling
pub(crate) concurrent_initialize_semaphore: Arc<tokio::sync::Semaphore>,
pub(crate) ratelimits: Limits,
pub ratelimits: Limits,
// Monitoring / tracing / logging
pub(crate) stats: SessionStats,