We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, no options are available for the gRPC server.
https://github.com/Senzing/serve-grpc/blob/26bd70eb20182b55a61b7c51ff03668d946312b1/grpcserver/grpcserver.go#L279
grpc.NewServer(...) does support ServerOptions.
Code similar to:
// Create generated server options. serverOptions := []senzinghttpapi.ServerOption{ grpc.ConnectionTimeout(600), } if someBool { serverOptions = append(serverOptions, grpc.HeaderTableSize(1024)) } // Create server. aGrpcServer := grpc.NewServer(serverOptions...)
Should be added to support multiple configurations of gRPC server.
Another approach is seen at:
ServerOptions []grpc.ServerOption
is part of the struct and is populated by the caller.
struct
The text was updated successfully, but these errors were encountered:
docktermj
No branches or pull requests
Currently, no options are available for the gRPC server.
https://github.com/Senzing/serve-grpc/blob/26bd70eb20182b55a61b7c51ff03668d946312b1/grpcserver/grpcserver.go#L279
grpc.NewServer(...) does support ServerOptions.
Code similar to:
Should be added to support multiple configurations of gRPC server.
Another approach is seen at:
is part of the
struct
and is populated by the caller.The text was updated successfully, but these errors were encountered: