Skip to content

Commit

Permalink
rgw: register the correct handler for cls_user_complete_stats
Browse files Browse the repository at this point in the history
Fixes: http://tracker.ceph.com/issues/16624
Signed-off-by: Orit Wasserman <owasserm@redhat.com>
  • Loading branch information
oritwas committed Jul 8, 2016
1 parent b342bf8 commit 1a8e72c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cls/user/cls_user.cc
Expand Up @@ -380,7 +380,7 @@ void __cls_init()
cls_register_cxx_method(h_class, "set_buckets_info", CLS_METHOD_RD | CLS_METHOD_WR,
cls_user_set_buckets_info, &h_user_set_buckets_info);
cls_register_cxx_method(h_class, "complete_stats_sync", CLS_METHOD_RD | CLS_METHOD_WR,
cls_user_complete_stats_sync, &h_user_set_buckets_info);
cls_user_complete_stats_sync, &h_user_complete_stats_sync);
cls_register_cxx_method(h_class, "remove_bucket", CLS_METHOD_RD | CLS_METHOD_WR, cls_user_remove_bucket, &h_user_remove_bucket);
cls_register_cxx_method(h_class, "list_buckets", CLS_METHOD_RD, cls_user_list_buckets, &h_user_list_buckets);
cls_register_cxx_method(h_class, "get_header", CLS_METHOD_RD, cls_user_get_header, &h_user_get_header);
Expand Down

0 comments on commit 1a8e72c

Please sign in to comment.