[Tarantool-patches] [PATCH 1/2] box: remove unused variable in process_register()
Serge Petrenko
sergepetrenko at tarantool.org
Mon Aug 30 13:33:47 MSK 2021
replica_version_id is unused in box_process_register,
so no point in filling it with anything coming from a remote instance.
Besides, version id isn't sent in register at all.
Follow-up #6034
---
src/box/box.cc | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/src/box/box.cc b/src/box/box.cc
index 0b12b1328..2c8113cbb 100644
--- a/src/box/box.cc
+++ b/src/box/box.cc
@@ -2616,9 +2616,7 @@ box_process_register(struct ev_io *io, struct xrow_header *header)
struct tt_uuid instance_uuid = uuid_nil;
struct vclock replica_vclock;
- uint32_t replica_version_id;
- xrow_decode_register_xc(header, &instance_uuid, &replica_vclock,
- &replica_version_id);
+ xrow_decode_register_xc(header, &instance_uuid, &replica_vclock, NULL);
if (!is_box_configured)
tnt_raise(ClientError, ER_LOADING);
--
2.30.1 (Apple Git-130)
More information about the Tarantool-patches
mailing list