Skip to content

Commit 9526f4a

Browse files
committed
reword
1 parent 5f4ab51 commit 9526f4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

MIGRATION_GUIDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Looking to upgrade from Sentry SDK 2.x to 3.x? Here's a comprehensive list of wh
2121
- clickhouse-driver integration: The query is now available under the `db.query.text` span attribute (only if `send_default_pii` is `True`).
2222
- `sentry_sdk.init` now returns `None` instead of a context manager.
2323
- The `sampling_context` argument of `traces_sampler` now additionally contains all span attributes known at span start.
24-
- The `sampling_context` argument of `traces_sampler` doesn't contain the `aiohttp_request` object anymore if you're using the `AioHttpIntegration`. Instead, some of the individual properties of the request are accessible, if available, as follows:
24+
- If you're using the AIOHTTP integration, the `sampling_context` argument of `traces_sampler` doesn't contain the `aiohttp_request` object anymore. Instead, some of the individual properties of the request are accessible, if available, as follows:
2525

2626
| Request property | Sampling context key(s) |
2727
| ---------------- | ------------------------------- |
@@ -32,7 +32,7 @@ Looking to upgrade from Sentry SDK 2.x to 3.x? Here's a comprehensive list of wh
3232
| `scheme` | `url.scheme` |
3333
| full URL | `url.full` |
3434

35-
- The `sampling_context` argument of `traces_sampler` doesn't contain the `wsgi_environ` object anymore for WSGI frameworks. Instead, the individual properties of the environment are accessible, if available, as follows:
35+
- If you're using the generic WSGI integration, the `sampling_context` argument of `traces_sampler` doesn't contain the `wsgi_environ` object anymore. Instead, the individual properties of the environment are accessible, if available, as follows:
3636

3737
| Env property | Sampling context key(s) |
3838
| ----------------- | ------------------------------------------------- |
@@ -45,7 +45,7 @@ Looking to upgrade from Sentry SDK 2.x to 3.x? Here's a comprehensive list of wh
4545
| `wsgi.url_scheme` | `url.scheme` |
4646
| full URL | `url.full` |
4747

48-
- The `sampling_context` argument of `traces_sampler` doesn't contain the `asgi_scope` object anymore for ASGI frameworks. Instead, the individual properties of the scope, if available, are accessible as follows:
48+
- If you're using the generic ASGI integration, the `sampling_context` argument of `traces_sampler` doesn't contain the `asgi_scope` object anymore. Instead, the individual properties of the scope, if available, are accessible as follows:
4949

5050
| Scope property | Sampling context key(s) |
5151
| -------------- | ------------------------------- |

0 commit comments

Comments
 (0)