Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
watchCommand注释错误修正
  • Loading branch information
Ag2S1 committed May 15, 2013
commit e50887fcbe47b33fc79d28b17705245ab03f7f5d
2 changes: 1 addition & 1 deletion src/multi.c
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ void touchWatchedKeysOnFlush(int dbid) {
void watchCommand(redisClient *c) {
int j;

// 只能在事务中使用
// 不能在事务中使用
if (c->flags & REDIS_MULTI) {
addReplyError(c,"WATCH inside MULTI is not allowed");
return;
Expand Down