| 1720 | } |
| 1721 | |
| 1722 | void evalCommand(client *c) { |
| 1723 | /* Explicitly feed monitor here so that lua commands appear after their |
| 1724 | * script command. */ |
| 1725 | replicationFeedMonitors(c,server.monitors,c->db->id,c->argv,c->argc); |
| 1726 | if (!(c->flags & CLIENT_LUA_DEBUG)) |
| 1727 | evalGenericCommand(c,0); |
| 1728 | else |
| 1729 | evalGenericCommandWithDebugging(c,0); |
| 1730 | } |
| 1731 | |
| 1732 | void evalShaCommand(client *c) { |
| 1733 | /* Explicitly feed monitor here so that lua commands appear after their |
nothing calls this directly
no test coverage detected