fix: typo and rename "expire" -> "expire_secs" (#5)

This commit is contained in:
fys
2023-02-13 11:15:03 +08:00
committed by GitHub
parent b846743da3
commit 3e6349be12
+2 -2
View File
@@ -20,8 +20,8 @@ message LockRequest {
bytes name = 2; bytes name = 2;
// If the expiration time is exceeded and currently holds the lock, the lock is // If the expiration time is exceeded and currently holds the lock, the lock is
// aytomatically released. The unit is second. // automatically released.
int64 expire = 3; int64 expire_secs = 3;
} }
message LockResponse { message LockResponse {