Skip to content

Commit 26cf34c

Browse files
committed
fix CHANGELOG.md and remove unused variable in tests
1 parent 0e59835 commit 26cf34c

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
([#4203](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4203))
2020
- `opentelemetry-instrumentation-psycopg2`: Add parameter `capture_parameters` to instrumentor.
2121
([#4212](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4212))
22+
- `opentelemetry-instrumentation-botocore`: Add support for instrumenting `aiobotocore`
23+
([#4049](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4049))
2224

2325
### Fixed
2426

@@ -239,8 +241,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
239241
([#3681](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3681))
240242
- `opentelemetry-instrumentation-flask`: Fix exemplars generation for `http.server.request.duration` and `http.server.duration` metrics
241243
([#3912](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3912))
242-
- `opentelemetry-instrumentation-botocore`: Add support for instrumenting `aiobotocore`
243-
([#4049](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4049))
244244

245245
### Added
246246

instrumentation/opentelemetry-instrumentation-botocore/tests/test_botocore_instrumentation.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
import importlib.util
1514
import json
1615
import os
1716
from importlib.metadata import EntryPoint
@@ -54,8 +53,6 @@
5453

5554
_REQUEST_ID_REGEX_MATCH = r"[A-Za-z0-9]{52}"
5655

57-
aiobotocore_installed = importlib.util.find_spec("aiobotocore") is not None
58-
5956

6057
# pylint:disable=too-many-public-methods
6158
class TestBotocoreInstrumentor(TestBase):

0 commit comments

Comments
 (0)