From 3a9ed422b638291bec9ed436f9aadbcd11200ca3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Thallis?= Date: Thu, 18 Jan 2024 18:39:07 -0300 Subject: [PATCH] Remove doc about function that is not being only a proxy (#253) * Remove doc about function that is not being only a proxy For `insert_all/2` it is creating a span: https://github.com/open-telemetry/opentelemetry-erlang-contrib/blob/8af382e26a8bbf306662bc745f1c000ad1323cc5/instrumentation/opentelemetry_oban/lib/opentelemetry_oban.ex#L107 * Update instrumentation/opentelemetry_oban/README.md --------- Co-authored-by: Bryan Naegele --- instrumentation/opentelemetry_oban/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/instrumentation/opentelemetry_oban/README.md b/instrumentation/opentelemetry_oban/README.md index 3dbde2f..6d7ca4a 100644 --- a/instrumentation/opentelemetry_oban/README.md +++ b/instrumentation/opentelemetry_oban/README.md @@ -49,6 +49,5 @@ After: |> OpentelemetryOban.insert() ``` -Oban also supports inserting jobs using `Oban.insert/4`, `Oban.insert_all/2` -and `Oban.insert_all/4`. These are currently not supported by OpentelemetryOban -and are just proxied through to Oban. +Oban also supports inserting jobs using `Oban.insert/4` and `Oban.insert_all/4`. +These are currently not supported by OpentelemetryOban and are just proxied through to Oban.