Remove Minimum Master Nodes Persistent Setting

Suppose I set the minimum master nodes setting via a dynamic API call:

PUT /_cluster/settings
{
    "persistent" : {
        "discovery.zen.minimum_master_nodes" : 2
    }
}

Later I want to remove that setting such that it adheres to the configuration file's value. What would be the steps for doing that?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.