elixir-grpc / grpc-reflection

elixir graph reflection support
Apache License 2.0
9 stars 6 forks source link

Config is global #6

Closed mjheilmann closed 10 months ago

mjheilmann commented 10 months ago

There is one config and one agent holding state. This precludes running two reflection servers on different endpoints that reflect some of their respective services.

mjheilmann commented 10 months ago

Refactored project from single global reflection instance to a many reflection instance model by having users use the module instead of simply calling into it.

Hosting them in the supervision tree is still less than ideal