• Resolved jayeshmahajan23

    (@jayeshmahajan23)


    Hi Team,

    We are using 4.7.1 version of ElasticPress, when we are trying to access sync/reports page we are getting ether 504 or ERR_HTTP2_PROTOCOL_ERROR

    can you please help to provide solution for same, we have more than 50k posts

Viewing 1 replies (of 1 total)
  • Plugin Contributor Felipe Elia

    (@felipeelia)

    Hi! It is probably happening because the indexable content report is timing out. You can disable that specific report by adding this snippet to your codebase:

    add_filter(
    	'ep_status_report_reports',
    	function( $reports ) {
    		unset( $reports['indexable'] );
    		return $reports;
    	}
    );

    As?we don’t provide support here, if you have any follow-up questions, please open an issue in our?GitHub repository. Thanks!

Viewing 1 replies (of 1 total)
  • The topic ‘Getting ERR_HTTP2_PROTOCOL_ERROR when try to access Sync page’ is closed to new replies.