RSS Git Download  Clone
Raw Blame History 218B 5 lines
const getInfo = require('./getInfo')
module.exports = async function isClusterEnabled(server, cache = false){
    const {cluster_enabled} = await getInfo(server, {cache})
    return Boolean(parseInt(cluster_enabled))
}