config->usePrimaryOnly()) { return []; } return parent::getReadOnlyOperations(); } /** * @return mixed[] */ protected function getDisallowedOperations(): array { $operations = parent::getDisallowedOperations(); unset($operations['INFO']); // removed to avoid "The command 'INFO' is not allowed in replication mode." error when executing bin/console cache:clear. INFO is safe if you only have one master that handles all operations. return $operations; } }