mirror of
https://github.com/fluencelabs/redis
synced 2025-05-16 12:31:20 +00:00
debug message removed
This commit is contained in:
parent
c8d0013f38
commit
a72c0423b4
@ -84,6 +84,8 @@ ae_select.o: ae_select.c
|
|||||||
anet.o: anet.c fmacros.h anet.h
|
anet.o: anet.c fmacros.h anet.h
|
||||||
aof.o: aof.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
aof.o: aof.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
||||||
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
||||||
|
bio.o: bio.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
||||||
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h bio.h
|
||||||
config.o: config.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
config.o: config.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
||||||
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
||||||
db.o: db.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
db.o: db.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
||||||
@ -113,7 +115,8 @@ redis-check-dump.o: redis-check-dump.c lzf.h
|
|||||||
redis-cli.o: redis-cli.c fmacros.h version.h ../deps/hiredis/hiredis.h \
|
redis-cli.o: redis-cli.c fmacros.h version.h ../deps/hiredis/hiredis.h \
|
||||||
sds.h zmalloc.h ../deps/linenoise/linenoise.h help.h
|
sds.h zmalloc.h ../deps/linenoise/linenoise.h help.h
|
||||||
redis.o: redis.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
redis.o: redis.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
||||||
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h slowlog.h
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h slowlog.h \
|
||||||
|
bio.h
|
||||||
release.o: release.c release.h
|
release.o: release.c release.h
|
||||||
replication.o: replication.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
replication.o: replication.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
||||||
adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
|
||||||
|
@ -100,7 +100,6 @@ void *bioProcessBackgroundJobs(void *arg) {
|
|||||||
|
|
||||||
/* Process the job accordingly to its type. */
|
/* Process the job accordingly to its type. */
|
||||||
if (job->type == REDIS_BIO_CLOSE_FILE) {
|
if (job->type == REDIS_BIO_CLOSE_FILE) {
|
||||||
printf("Closing file...\n");
|
|
||||||
close((long)job->data);
|
close((long)job->data);
|
||||||
} else {
|
} else {
|
||||||
redisPanic("Wrong job type in bioProcessBackgroundJobs().");
|
redisPanic("Wrong job type in bioProcessBackgroundJobs().");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user