To many connections from /wp-json/jetpack/v4/sync/spawn-sync
-
Over the past month, Cloudflare has been logging more than 2,200 daily connections to /wp-json/jetpack/v4/sync/spawn-sync. After checking the Jetpack activity log, it seems these connections are related to sending information about recent posts or post changes.
I only have two modules active: Sitemaps and Embedded Shortcodes.
Is there any way to disable this functionality?I’ve already tried adding the following code to functions.php, but there hasn’t been any change.
Thank you.
add_filter( ‘jetpack_sync_prevent_sending_post_data’, ‘__return_true’ );
add_action( ‘jetpack_sync_before_send_data’, ‘__return_false’ );
add_filter( ‘rest_endpoints’, function( $endpoints ) {
if ( isset( $endpoints[‘/jetpack/v4/sync’] ) ) {
unset( $endpoints[‘/jetpack/v4/sync’] );
}
return $endpoints;
} );The page I need help with: [log in to see the link]
- You must be logged in to reply to this topic.