minio / kes

Key Managament Server for Object Storage and more
https://min.io/docs/kes/concepts/
GNU Affero General Public License v3.0
456 stars 95 forks source link

vault: use `time.Ticker` instead of `time.Timer` #386

Closed aead closed 1 year ago

aead commented 1 year ago

This commit changes the Vault re-auth. logic to use time.Ticker instead of time.Timer.

A time.Ticker is better suited for periodic tasks instead of a reseting a time.Timer constantly.

Further, this commit updates the Vault SDK dep from 1.5 to 1.9.2 and removes some deprecated API usages.

aead commented 1 year ago

Superseded by #388