summaryrefslogtreecommitdiff
path: root/src/commands/replicaof.json
blob: aa49390197cdc2dbe3b6395428c38e68eeb0984b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
    "REPLICAOF": {
        "summary": "Configures a server as replica of another, or promotes it to a master.",
        "complexity": "O(1)",
        "group": "server",
        "since": "5.0.0",
        "arity": 3,
        "function": "replicaofCommand",
        "command_flags": [
            "NO_ASYNC_LOADING",
            "ADMIN",
            "NOSCRIPT",
            "STALE"
        ],
        "arguments": [
            {
                "name": "host",
                "type": "string"
            },
            {
                "name": "port",
                "type": "integer"
            }
        ],
        "reply_schema": {
            "description": "replicaOf status",
            "type": "string",
            "pattern": "OK*"
        }
    }
}