Skip to content

Commit

Permalink
fix:修复接口异常数统计不对问题 (#282)
Browse files Browse the repository at this point in the history
* fix: 修复熔断问题

* fix:修复接口异常数统计不对问题

---------

Co-authored-by: tingfuyeh <tingfuyeh@tencent.com>
  • Loading branch information
chuntaojun and tingfuyeh committed Aug 12, 2024
1 parent 1ae2d16 commit c08808f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion handlers/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,6 @@ func describeServiceInterfaceMetricsRequestTotal(conf *bootstrap.Config, namespa
case string(RetReject), string(RetFlowControl):
allInter.FlowControlRequest += total
inter.FlowControlRequest += total
inter.AbnormalRequest += total
}

}
Expand Down
2 changes: 1 addition & 1 deletion router/auth_router.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@ func AuthRouter(webSvr *gin.Engine, config *bootstrap.Config) {
v1.GET("/auth/principal/resources", handlers.ReverseProxyForServer(&config.PolarisServer, config))

// 获取鉴权开关状态信息
v1.GET("/auth/status", handlers.ReverseProxyForServer(&config.PolarisServer, config))
v1.GET("/auth/status", handlers.ReverseProxyNoAuthForServer(&config.PolarisServer, config))
}

0 comments on commit c08808f

Please sign in to comment.