Add tracing to #to_hash for Comment/CommentThread.

This commit is contained in:
Toby Lawrence 2016-08-23 08:16:03 -04:00
Родитель 1f4b77a9bd
Коммит 925dd72a9d
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,4 @@
require 'new_relic/agent/method_tracer'
require_relative 'content'
require_relative 'constants'
@ -164,4 +165,7 @@ class Comment < Content
self.sk = (self.parent_ids.dup << self.id).join("-")
end
end
include ::NewRelic::Agent::MethodTracer
add_method_tracer :to_hash
end

Просмотреть файл

@ -133,7 +133,6 @@ class CommentThread < Content
"group_id" => group_id,
"pinned" => pinned?,
"comments_count" => comment_count)
end
def comment_thread_id
@ -162,4 +161,7 @@ class CommentThread < Content
def destroy_subscriptions
subscriptions.delete_all
end
include ::NewRelic::Agent::MethodTracer
add_method_tracer :to_hash
end