Allow start_link/1 to be delegated (#157)

This commit is contained in:
Antonio 2023-03-13 17:14:37 +01:00 committed by GitHub
parent bc11851360
commit 3f26975ae9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -831,6 +831,6 @@ defmodule OpentelemetryProcessPropagator.Task.Supervisor do
end end
defdelegate children(supervisor), to: Task.Supervisor defdelegate children(supervisor), to: Task.Supervisor
defdelegate start_link(), to: Task.Supervisor defdelegate start_link(options \\ []), to: Task.Supervisor
defdelegate terminate_child(supervisor, pid), to: Task.Supervisor defdelegate terminate_child(supervisor, pid), to: Task.Supervisor
end end