summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbabenko <[email protected]>2024-08-28 12:50:31 +0300
committerbabenko <[email protected]>2024-08-28 13:04:34 +0300
commit53efb0adf83070473ff3a46171a4295cf1478cd0 (patch)
treef2c152767abf4145058b8c2479adc9b8424ebf5c
parentca9b187c51ee650cce7e2dc1ec169248abeeed1b (diff)
Fix legacy naming: registry -> profiler
4a4f5c7faabad00d120216154e61771eee58dcec
-rw-r--r--yt/yt/core/misc/ref_counted_tracker_profiler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt/yt/core/misc/ref_counted_tracker_profiler.cpp b/yt/yt/core/misc/ref_counted_tracker_profiler.cpp
index be5d007bbd7..5e06bc69101 100644
--- a/yt/yt/core/misc/ref_counted_tracker_profiler.cpp
+++ b/yt/yt/core/misc/ref_counted_tracker_profiler.cpp
@@ -16,8 +16,8 @@ class TRefCountedTrackerProfiler
public:
TRefCountedTrackerProfiler()
{
- TProfiler registry{"/ref_counted_tracker"};
- registry.AddProducer("/total", MakeStrong(this));
+ TProfiler profiler{"/ref_counted_tracker"};
+ profiler.AddProducer("/total", MakeStrong(this));
}
void CollectSensors(ISensorWriter* writer) override