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
When tokenserver.disable_syncstorage is set to true, there is no primary application state; the only application state that exists is Tokenserver's, which doesn't store the Metrics object. In the Tokenserver extractors, we're using the Metrics: FromRequest impl to get access to the metrics, which looks at the syncstorage application state. To resolve this, we'll either want to manually reach into the Tokenserver application state or create a wrapper type around the metrics so we can impl FromRequest specifically for Tokenserver's metrics object.
The text was updated successfully, but these errors were encountered:
When
tokenserver.disable_syncstorage
is set to true, there is no primary application state; the only application state that exists is Tokenserver's, which doesn't store the Metrics object. In the Tokenserver extractors, we're using theMetrics: FromRequest
impl to get access to the metrics, which looks at the syncstorage application state. To resolve this, we'll either want to manually reach into the Tokenserver application state or create a wrapper type around the metrics so we can implFromRequest
specifically for Tokenserver's metrics object.The text was updated successfully, but these errors were encountered: