Skip to content

Commit b093f2b

Browse files
committed
Revert minor change
1 parent 208ba72 commit b093f2b

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

src/db.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2075,6 +2075,8 @@ static void deleteKeyAndPropagate(redisDb *db, robj *keyobj, int notify_type, lo
20752075
keyobj = createStringObject(keyobj->ptr, sdslen(keyobj->ptr));
20762076
}
20772077

2078+
serverLog(LL_DEBUG,"key %s %s: deleting it", (char*)keyobj->ptr, notify_type == NOTIFY_EXPIRED ? "expired" : "evicted");
2079+
20782080
/* We compute the amount of memory freed by db*Delete() alone.
20792081
* It is possible that actually the memory needed to propagate
20802082
* the DEL in AOF and replication link is greater than the one

src/defrag.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* We do that by scanning the keyspace and for each pointer we have, we can try to
66
* ask the allocator if moving it to a new address will help reduce fragmentation.
77
*
8-
* Copyright (c) 2009-Present, Redis Ltd.
8+
* Copyright (c) 2020-Present, Redis Ltd.
99
* All rights reserved.
1010
*
1111
* Copyright (c) 2024-present, Valkey contributors.

src/kvstore.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* struct.
1010
* This enables us to easily access all keys that map to a specific hash-slot.
1111
*
12-
* Copyright (c) 2009-Present, Redis Ltd.
12+
* Copyright (c) 2011-Present, Redis Ltd. and contributors.
1313
* All rights reserved.
1414
*
1515
* Copyright (c) 2024-present, Valkey contributors.

src/module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009-Present, Redis Ltd.
2+
* Copyright (c) 2016-Present, Redis Ltd.
33
* All rights reserved.
44
*
55
* Copyright (c) 2024-present, Valkey contributors.

0 commit comments

Comments
 (0)