From: Vladislav Shpilevoy <v.shpilevoy@tarantool.org> To: tarantool-patches@freelists.org Cc: alexander.turenko@tarantool.org Subject: [tarantool-patches] Re: [PATCH 1/1] box: raise an error on nil replicaset and instance uuid Date: Sun, 8 Sep 2019 14:27:05 +0200 [thread overview] Message-ID: <2dfb219c-bdcf-b3d7-8260-c0020d4bd95d@tarantool.org> (raw) In-Reply-To: <c2d380c0-7121-5f10-f2e8-d6b6547cdcab@tarantool.org> Changed error message as asked by Kostja: diff --git a/src/box/box.cc b/src/box/box.cc index 921bc5c42..015994da1 100644 --- a/src/box/box.cc +++ b/src/box/box.cc @@ -491,7 +491,7 @@ box_check_uuid(struct tt_uuid *uuid, const char *name) tnt_raise(ClientError, ER_CFG, name, uuid_str); if (tt_uuid_is_nil(uuid)) { tnt_raise(ClientError, ER_CFG, name, - tt_sprintf("nil UUID is a reserved value")); + tt_sprintf("nil UUID is reserved")); } }
next prev parent reply other threads:[~2019-09-08 12:25 UTC|newest] Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-09-07 13:26 [tarantool-patches] " Vladislav Shpilevoy 2019-09-07 13:28 ` [tarantool-patches] " Vladislav Shpilevoy 2019-09-08 12:27 ` Vladislav Shpilevoy [this message] 2019-10-16 0:12 ` [Tarantool-patches] " Alexander Turenko
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=2dfb219c-bdcf-b3d7-8260-c0020d4bd95d@tarantool.org \ --to=v.shpilevoy@tarantool.org \ --cc=alexander.turenko@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='[tarantool-patches] Re: [PATCH 1/1] box: raise an error on nil replicaset and instance uuid' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox