action wp_set_comment_status never gets fired when i change the comment status [closed]

Your code is showing an empty space in the hook name

add_action('wp_set_comment_status ', 'update_business_rating_avg');
                                 ^

try removing it

add_action('wp_set_comment_status', 'update_business_rating_avg');

tech