We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02d971b commit b02dd01Copy full SHA for b02dd01
cmd/statshouse-igp/ingress_proxy.go
@@ -428,10 +428,11 @@ func (p *proxyConn) run() {
428
return // server shutdown
429
}
430
if firstReq.tip == rpcInvokeReqHeaderTLTag {
431
- if firstReq.RequestTag() == constants.StatshouseGetConfig3 {
432
- // GetConfig3 does not send shardReplica
+ switch firstReq.RequestTag() {
+ case constants.StatshouseGetConfig2, constants.StatshouseGetConfig3:
433
+ // GetConfigX does not send shardReplica
434
if res := firstReq.process(p); res.Error() != nil {
- return // failed serve GetConfig3 request
435
+ return // failed to serve GetConfigX request
436
437
continue
438
0 commit comments