fixed-redis-intfix2-вуигп
All checks were successful
deploy / deploy (push) Successful in 1m27s

This commit is contained in:
Untone 2024-06-05 22:15:03 +03:00
parent 7d5d31692f
commit 86453d483e

View File

@ -235,8 +235,8 @@ func (c *provider) GetUserAppDataFromRedis(userId string) (string, error) {
rkey := fmt.Sprintf("author:user:%s", userId)
authorProfileString, err := c.store.Get(c.ctx, rkey).Result()
if err != nil {
fmt.Println("redis GET: %s", rkey)
fmt.Println("%s", authorProfileString)
fmt.Println("redis GET:", rkey)
fmt.Println(authorProfileString)
return "", err
}