Skip to content

Commit

Permalink
format fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Ran Shidlansik <[email protected]>
  • Loading branch information
ranshid committed Aug 19, 2024
1 parent 9c7a4b6 commit 27b1c51
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/server.h
Original file line number Diff line number Diff line change
Expand Up @@ -1015,17 +1015,17 @@ typedef struct blockingState {
listNode *postponed_list_node; /* list node within the postponed list */
listNode *generic_blocked_list_node; /* generic placeholder for blocked clients utility lists.
Since a client cannot be blocked multiple times, we can assume
It will be held in only one extra utility list, so it is O.K maintain a union of these
listNode references. */
it will be held in only one extra utility list, so it is O.K maintain a
union of these listNode references. */
};

/* BLOCKED_LIST, BLOCKED_ZSET and BLOCKED_STREAM or any other Keys related blocking */
dict *keys; /* The keys we are blocked on */

/* BLOCKED_WAIT and BLOCKED_WAITAOF */
int numreplicas; /* Number of replicas we are waiting for ACK. */
int numlocal; /* Indication if WAITAOF is waiting for local fsync. */
long long reploffset; /* Replication offset to reach. */
int numreplicas; /* Number of replicas we are waiting for ACK. */
int numlocal; /* Indication if WAITAOF is waiting for local fsync. */
long long reploffset; /* Replication offset to reach. */

/* BLOCKED_MODULE */
void *module_blocked_handle; /* ValkeyModuleBlockedClient structure.
Expand Down

0 comments on commit 27b1c51

Please sign in to comment.