Skip to content

Commit a22d4eb

Browse files
author
James Williams
authored
Define password expiry in terms of seconds (#181)
## What is the goal of this PR? We've redefined the way we expose how long until a password expires in seconds, rather than days as was done previously. ## What are the changes implemented in this PR? We've changed `password_expiry_days` to `password_expiry_seconds`.
1 parent 45a5123 commit a22d4eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cluster/cluster_user.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ message ClusterUser {
9898
message User {
9999
string username = 1;
100100
oneof password_expiry {
101-
int64 password_expiry_days = 2;
101+
int64 password_expiry_seconds = 2;
102102
}
103103
}
104104

0 commit comments

Comments
 (0)