Skip to content

Commit

Permalink
Fix another redis error
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffm2001 committed Oct 14, 2024
1 parent aec5dfc commit 3c83842
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const organizationContactCache = {
if (r.redis && organizationContact) {
await r.redis
.MULTI()
.SET(cachekey, json.stringify(organizationcontact))
.SET(cacheKey, JSON.stringify(organizationContact))
.EXPIRE(cacheKey, 43200) // 12 hours
.exec();
}
Expand Down

0 comments on commit 3c83842

Please sign in to comment.