Skip to content

Commit

Permalink
chore: fix typos (#1253)
Browse files Browse the repository at this point in the history
  • Loading branch information
kianmeng committed Nov 16, 2021
1 parent 1ed232c commit 40ab716
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ A major release `N` implies the previous release `N-1` will no longer receive up
## 1.2.0

- Fix for `AWSLambda` Integration to handle other path formats for function initial handler #1139
- Fix for worker to set deamon attribute instead of deprecated setDaemon method #1093
- Fix for worker to set daemon attribute instead of deprecated setDaemon method #1093
- Fix for `bottle` Integration that discards `-dev` for version extraction #1085
- Fix for transport that adds a unified hook for capturing metrics about dropped events #1100
- Add `Httpx` Integration #1119
Expand Down
2 changes: 1 addition & 1 deletion sentry_sdk/integrations/aiohttp.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def setup_once():
version = tuple(map(int, AIOHTTP_VERSION.split(".")[:2]))
except (TypeError, ValueError):
raise DidNotEnable(
"AIOHTTP version unparseable: {}".format(AIOHTTP_VERSION)
"AIOHTTP version unparsable: {}".format(AIOHTTP_VERSION)
)

if version < (3, 4):
Expand Down
2 changes: 1 addition & 1 deletion sentry_sdk/tracing.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ def _set_initial_sampling_decision(self, sampling_context):
1. If a sampling decision is passed to `start_transaction`
(`start_transaction(name: "my transaction", sampled: True)`), that
decision will be used, regardlesss of anything else
decision will be used, regardless of anything else
2. If `traces_sampler` is defined, its decision will be used. It can
choose to keep or ignore any parent sampling decision, or use the
Expand Down
2 changes: 1 addition & 1 deletion sentry_sdk/tracing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
# of the form `sentry=xxxx`
SENTRY_TRACESTATE_ENTRY_REGEX = re.compile(
# either sentry is the first entry or there's stuff immediately before it,
# ending in a commma (this prevents matching something like `coolsentry=xxx`)
# ending in a comma (this prevents matching something like `coolsentry=xxx`)
"(?:^|.+,)"
# sentry's part, not including the potential comma
"(sentry=[^,]*)"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def intercepting_fetch(*args, **kwargs):
client.flush()

# this goes out with an extra envelope because it's flushed after the last item
# that is normally in the queue. This is quite funny in a way beacuse it means
# that is normally in the queue. This is quite funny in a way because it means
# that the envelope that caused its own over quota report (an error with an
# attachment) will include its outcome since it's pending.
assert len(capturing_server.captured) == 1
Expand Down

0 comments on commit 40ab716

Please sign in to comment.