mirror of
https://github.com/joyieldInc/predixy.git
synced 2025-12-24 22:46:41 +08:00
Merge f304a0cd27 into ca1630a6b4
This commit is contained in:
commit
748f106681
@ -35,8 +35,8 @@ bool ServerConf::parse(ServerConf& s, const char* str)
|
|||||||
|
|
||||||
void CustomCommandConf::init(CustomCommandConf&c, const char* name) {
|
void CustomCommandConf::init(CustomCommandConf&c, const char* name) {
|
||||||
c.name = name;
|
c.name = name;
|
||||||
c.minArgs = 2;
|
c.minArgs = 1;
|
||||||
c.maxArgs = 2;
|
c.maxArgs = 1;
|
||||||
c.mode = Command::Write;
|
c.mode = Command::Write;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -400,8 +400,8 @@ void Conf::setCustomCommand(const ConfParser::Node* node)
|
|||||||
CustomCommandConf::init(cc, p->key.c_str());
|
CustomCommandConf::init(cc, p->key.c_str());
|
||||||
auto s = p->sub;
|
auto s = p->sub;
|
||||||
for (;s ; s = s->next) {
|
for (;s ; s = s->next) {
|
||||||
if (setInt(cc.minArgs, "MinArgs", s, 2)) {
|
if (setInt(cc.minArgs, "MinArgs", s, 1)) {
|
||||||
} else if (setInt(cc.maxArgs, "MaxArgs", s, 2, 9999)) {
|
} else if (setInt(cc.maxArgs, "MaxArgs", s, 1, 9999)) {
|
||||||
} else if (setCommandMode(cc.mode, "Mode", s)) {
|
} else if (setCommandMode(cc.mode, "Mode", s)) {
|
||||||
} else {
|
} else {
|
||||||
Throw(UnknownKey, "%s:%d unknown key %s", s->file, s->line, s->key.c_str());
|
Throw(UnknownKey, "%s:%d unknown key %s", s->file, s->line, s->key.c_str());
|
||||||
|
|||||||
@ -641,6 +641,7 @@ bool Handler::preHandleRequest(Request* req, const String& key)
|
|||||||
return true;
|
return true;
|
||||||
case Command::Watch:
|
case Command::Watch:
|
||||||
case Command::Multi:
|
case Command::Multi:
|
||||||
|
case Command::Exec:
|
||||||
if (!mProxy->supportTransaction()) {
|
if (!mProxy->supportTransaction()) {
|
||||||
directResponse(req, Response::ForbidTransaction);
|
directResponse(req, Response::ForbidTransaction);
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user