Yiyiyimu commented on a change in pull request #2036: URL: https://github.com/apache/apisix/pull/2036#discussion_r488014261
########## File path: apisix/core/config_etcd.lua ########## @@ -92,17 +105,29 @@ local function waitdir(etcd_cli, key, modified_index, timeout) return nil, nil, "not inited" end - local res, err = etcd_cli:waitdir(key, modified_index, timeout) + local opts = {} + opts.start_revision = modified_index + opts.timeout = timeout + local res_fun, fun_err = etcd_cli:watchdir(key, opts) + if not res_fun then + return nil, fun_err + end + + -- try twice to skip create info Review comment: In etcd v3, the first response of watch would be the success of watch creation, which is useless for us. Will add this line to comment. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org