From 71afd2bf1d27840623db042c1ed3115dc5a0c4d4 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Sun, 7 Sep 2025 05:20:29 +0000 Subject: [PATCH] chore(store/s3api): support IsPersistent call Ref #1088 Signed-off-by: Xe Iaso --- lib/store/s3api/s3api.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/store/s3api/s3api.go b/lib/store/s3api/s3api.go index 04c85304..757a06f6 100644 --- a/lib/store/s3api/s3api.go +++ b/lib/store/s3api/s3api.go @@ -74,3 +74,5 @@ func (s *Store) Set(ctx context.Context, key string, value []byte, expiry time.D } return nil } + +func (Store) IsPersistent() bool { return true }