[#93] Add gRPC Reflection service
Added gRPC Reflection service that can be enabled by settings `grpc.enable_reflect_service`. Read more about at https://github.com/grpc/grpc-go/blob/master/Documentation/server-reflection-tutorial.md Signed-off-by: Evgeniy Kulikov <kim@nspcc.ru>
This commit is contained in:
parent
1332a6d3a8
commit
53f7b58130
2 changed files with 15 additions and 4 deletions
|
@ -50,8 +50,9 @@ const (
|
|||
cfgMaxObjectSize = "node.maxobjectsize" // todo: get value from chain
|
||||
|
||||
// config keys for cfgGRPC
|
||||
cfgListenAddress = "grpc.endpoint"
|
||||
cfgMaxMsgSize = "grpc.maxmessagesize"
|
||||
cfgListenAddress = "grpc.endpoint"
|
||||
cfgMaxMsgSize = "grpc.maxmessagesize"
|
||||
cfgReflectService = "grpc.enable_reflect_service"
|
||||
|
||||
// config keys for cfgMorph
|
||||
cfgMorphRPCAddress = "morph.endpoint"
|
||||
|
@ -124,6 +125,8 @@ type cfgGRPC struct {
|
|||
maxChunkSize uint64
|
||||
|
||||
maxAddrAmount uint64
|
||||
|
||||
enableReflectService bool
|
||||
}
|
||||
|
||||
type cfgMorph struct {
|
||||
|
@ -234,8 +237,9 @@ func initCfg(path string) *cfg {
|
|||
maxObjectSize: viperCfg.GetUint64(cfgMaxObjectSize),
|
||||
},
|
||||
cfgGRPC: cfgGRPC{
|
||||
maxChunkSize: maxChunkSize,
|
||||
maxAddrAmount: maxAddrAmount,
|
||||
maxChunkSize: maxChunkSize,
|
||||
maxAddrAmount: maxAddrAmount,
|
||||
enableReflectService: viperCfg.GetBool(cfgReflectService),
|
||||
},
|
||||
localAddr: netAddr,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue