closing sessions on api request to avoid locking requests

This commit is contained in:
Leo Germani 2018-11-29 11:45:07 -02:00
parent 9fee1ef268
commit fab4bb7b22
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ class REST_Controller extends \WP_REST_Controller {
* REST_Controller constructor.
*/
public function __construct() {
session_write_close();
$this->namespace = TAINACAN_REST_NAMESPACE;
add_action('rest_api_init', array($this, 'register_routes'));
}