| 1743 | } |
| 1744 | |
| 1745 | void evalCommand(client *c) { |
| 1746 | /* Explicitly feed monitor here so that lua commands appear after their |
| 1747 | * script command. */ |
| 1748 | replicationFeedMonitors(c,g_pserver->monitors,c->db->id,c->argv,c->argc); |
| 1749 | if (!(c->flags & CLIENT_LUA_DEBUG)) |
| 1750 | evalGenericCommand(c,0); |
| 1751 | else |
| 1752 | evalGenericCommandWithDebugging(c,0); |
| 1753 | } |
| 1754 | |
| 1755 | void evalShaCommand(client *c) { |
| 1756 | /* Explicitly feed monitor here so that lua commands appear after their |
no test coverage detected