Skip to content

Commit

Permalink
live-test: disable SortQueryParams addon (#44806)
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere authored Aug 27, 2024
1 parent 63ab010 commit cb6bf8b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions airbyte-ci/connectors/live-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,10 @@ The traffic recorded on the control connector is passed to the target connector

## Changelog

### 0.18.6

Disable the `SortQueryParams` MITM proxy addon to avoid double URL encoding.

### 0.18.5

Relax test_oneof_usage criteria for constant value definitions in connector SPEC output.
Expand Down
2 changes: 1 addition & 1 deletion airbyte-ci/connectors/live-tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "live-tests"
version = "0.18.5"
version = "0.18.6"
description = "Contains utilities for testing connectors against live data."
authors = ["Airbyte <[email protected]>"]
license = "MIT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,9 @@ def request(self, flow: http.HTTPFlow) -> None:
flow.request.url = sorted_url


addons = [SortQueryParams()]
# Disabling the addon.
# It can alter the request URL when some connector URL are already encoded.
# See discussion here https://github.com/airbytehq/airbyte-internal-issues/issues/9302#issuecomment-2311854334

# addons = [SortQueryParams()]
addons = []

0 comments on commit cb6bf8b

Please sign in to comment.