We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 806d356 commit d0c4fc4Copy full SHA for d0c4fc4
modules/cachedb_local/cachedb_local_replication.c
@@ -205,7 +205,8 @@ int receive_sync_request(int node_id)
205
bin_push_str(sync_packet, &col->col_name);
206
bin_push_str(sync_packet, &data->attr);
207
bin_push_str(sync_packet, &data->value);
208
- bin_push_int(sync_packet, data->expires);
+ bin_push_int(sync_packet, data->expires ?
209
+ data->expires - get_ticks() : 0);
210
}
211
data = data->next;
212
0 commit comments