update github actions (#3538)

This commit is contained in:
fatedier 2023-07-21 10:30:46 +08:00 committed by GitHub
parent efcc028a3d
commit 46ff40543a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
33 changed files with 72 additions and 108 deletions

View file

@ -29,11 +29,11 @@ func (m *serverMetrics) CloseClient() {
m.clientCount.Dec()
}
func (m *serverMetrics) NewProxy(name string, proxyType string) {
func (m *serverMetrics) NewProxy(_ string, proxyType string) {
m.proxyCount.WithLabelValues(proxyType).Inc()
}
func (m *serverMetrics) CloseProxy(name string, proxyType string) {
func (m *serverMetrics) CloseProxy(_ string, proxyType string) {
m.proxyCount.WithLabelValues(proxyType).Dec()
}