From 1bbb90ccdb9e78f314b7a6601cc552702f153c43 Mon Sep 17 00:00:00 2001 From: Vincent Boutour Date: Sat, 30 Sep 2023 23:07:46 +0200 Subject: [PATCH] fix(cache): Flushing cache version Signed-off-by: Vincent Boutour --- .env.example | 2 ++ pkg/version/version.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index f243aa1d..2adfe7a4 100644 --- a/.env.example +++ b/.env.example @@ -2,6 +2,8 @@ FIBR_THUMBNAIL_URL=http://localhost:4000 FIBR_EXIF_URL=http://localhost:5000 FIBR_CHUNK_UPLOAD=true +FIBR_REDIS_ADDRESS= + # FIBR_STORAGE_OBJECT_ACCESS_KEY=access # FIBR_STORAGE_OBJECT_SECRET_ACCESS=secret # FIBR_STORAGE_OBJECT_BUCKET=fibr-test diff --git a/pkg/version/version.go b/pkg/version/version.go index b2af304e..586f4de1 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -7,7 +7,7 @@ import ( ) var ( - cacheVersion = provider.Hash("vibioh/fibr/1")[:8] + cacheVersion = provider.Hash("vibioh/fibr/2")[:8] cachePrefix = "fibr:" + cacheVersion )