From 3e6349be127b65a8b42a38cda9d527ec423ca77d Mon Sep 17 00:00:00 2001 From: fys <40801205+Fengys123@users.noreply.github.com> Date: Mon, 13 Feb 2023 11:15:03 +0800 Subject: [PATCH] fix: typo and rename "expire" -> "expire_secs" (#5) --- proto/greptime/v1/meta/lock.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/greptime/v1/meta/lock.proto b/proto/greptime/v1/meta/lock.proto index ed881f7..5c95995 100644 --- a/proto/greptime/v1/meta/lock.proto +++ b/proto/greptime/v1/meta/lock.proto @@ -20,8 +20,8 @@ message LockRequest { bytes name = 2; // If the expiration time is exceeded and currently holds the lock, the lock is - // aytomatically released. The unit is second. - int64 expire = 3; + // automatically released. + int64 expire_secs = 3; } message LockResponse {