Skip to content

Commit b3d133a

Browse files
committed
Use library_version instead of profiler_version
This seems to work fine, and it's a much better name.
1 parent bd6ccae commit b3d133a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/datadog/core/crashtracking/tag_builder.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def self.call(settings)
2525
'git.commit.sha' => Environment::Git.git_commit_sha,
2626
'is_crash' => 'true',
2727
'language' => 'ruby',
28-
'profiler_version' => Core::Environment::Identity.gem_datadog_version,
28+
'library_version' => Core::Environment::Identity.gem_datadog_version,
2929
}.compact
3030

3131
# Make sure everything is an utf-8 string, to avoid encoding issues in downstream

spec/datadog/core/crashtracking/tag_builder_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
'runtime_version' => RUBY_VERSION,
1818
'is_crash' => 'true',
1919
'language' => 'ruby',
20-
'profiler_version' => Datadog::Core::Environment::Identity.gem_datadog_version,
20+
'library_version' => Datadog::Core::Environment::Identity.gem_datadog_version,
2121
)
2222
end
2323

0 commit comments

Comments
 (0)