Skip to content

Commit

Permalink
NOT FOR MERGE - debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
naglera committed Jul 25, 2024
1 parent 9e3ad13 commit bb53f85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/networking.c
Original file line number Diff line number Diff line change
Expand Up @@ -1770,7 +1770,7 @@ void freeClient(client *c) {
void freeClientAsync(client *c) {
if (c->flag.close_asap || c->flag.script) return;
c->flag.close_asap = 1;
serverAssert(listSearchKey(server.clients_to_close,c) != NULL); // TODO remove
serverAssert(listSearchKey(server.clients_to_close,c) == NULL); // TODO remove
listAddNodeTail(server.clients_to_close, c);
}

Expand Down

0 comments on commit bb53f85

Please sign in to comment.