Skip to content

Commit

Permalink
fix default value for span_compression_exact_match_max_duration (#1407)
Browse files Browse the repository at this point in the history
  • Loading branch information
beniwohli authored Nov 17, 2021
1 parent 33adb7d commit d5f877e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ endif::[]
===== Bug fixes
* fix compatibility issues with httpx 0.21 {pull}1403[#1403]
* fix `span_compression_exact_match_max_duration` default value {pull}1407[#1407]
[[release-notes-6.x]]
=== Python Agent version 6.x
Expand Down
2 changes: 1 addition & 1 deletion elasticapm/conf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ class Config(_ConfigBase):
)
span_compression_exact_match_max_duration = _ConfigValue(
"span_compression_exact_match_max_duration",
default=5,
default=50,
validators=[duration_validator],
type=int,
)
Expand Down

0 comments on commit d5f877e

Please sign in to comment.