We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c4998c commit eca8843Copy full SHA for eca8843
proxy/src/auth.rs
@@ -37,6 +37,10 @@ pub fn start(state: Arc<State>) {
37
})
38
.collect();
39
*state.consumers.write().await = consumers;
40
+
41
+ // When the watcher is restarted, we reset the limiter because a user
42
+ // could have changed the tier on the watcher restart.
43
+ state.limiter.write().await.clear();
44
}
45
// New port created or updated.
46
Ok(Some(Event::Applied(crd))) => match crd.status {
0 commit comments