You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updates to the recent upstream release of elixir-grpcv0.5.0
Breaking Changes
Spawn supervisor now expects a Keyword list instead of a tuple.
Before:
defchildren,do: [# ... other supervisors{GRPC.Server.Supervisor,{MyCoolEndPoint,@my_grpc_port}}]
Now:
defchildren,do: [# ... other supervisors{GRPC.Server.Supervisor,endpoint: MyEndpoint,port: @my_grpc_port,server_enabled: true}]
server_enable config is no longer defined in the application config, you should pass is as an option when spawning the supervisor, like in the example above
adapter_opts now expects a keyword list instead of a map.