Manually removing revision post types

IF you want, you can disable revisions in first place (No need to run CRON then)

To disable them go to wp-config.php and add this line:

define('WP_POST_REVISIONS', false );

Or to limit to 10 revisions

define('WP_POST_REVISIONS', 10);

And to delete all current revisions you can run this SQL query:

DELETE FROM wp_posts WHERE post_type = "revision";

Here seems to be quite decent plugin to do that for you (It does a lot more too)
https://wordpress.org/plugins/rvg-optimize-database/

Also DO backups

And another SO thread:
Safest way to bulk delete post revisions