Skip to content

Commit 54516b7

Browse files
committed
tool/ceph_dedup: rename make_crawling_daemon to run_crawling_daemon
Signed-off-by: Myoungwon Oh <[email protected]>
1 parent 111c94e commit 54516b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/ceph_dedup/ceph_dedup_daemon.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ int SampleDedupWorkerThread::do_chunk_dedup(chunk_t &chunk, snap_t snap)
582582

583583
unique_ptr<SampleDedupWorkerThread::SampleDedupGlobal> state;
584584

585-
int make_crawling_daemon(const po::variables_map &opts)
585+
int run_crawling_daemon(const po::variables_map &opts)
586586
{
587587
string base_pool_name = get_opts_pool_name(opts);
588588
string chunk_pool_name = get_opts_chunk_pool(opts);
@@ -812,7 +812,7 @@ int main(int argc, const char **argv)
812812
register_async_signal_handler_oneshot(SIGINT, handle_signal);
813813
register_async_signal_handler_oneshot(SIGTERM, handle_signal);
814814

815-
int ret = make_crawling_daemon(opts);
815+
int ret = run_crawling_daemon(opts);
816816

817817
unregister_async_signal_handler(SIGINT, handle_signal);
818818
unregister_async_signal_handler(SIGTERM, handle_signal);

0 commit comments

Comments
 (0)