From 157e97e72e247ae6d999d76cba11f31425c212fb Mon Sep 17 00:00:00 2001 From: Ken Hibino Date: Sat, 11 Dec 2021 06:44:01 -0800 Subject: [PATCH] Update changelog --- CHANGELOG.md | 1 + internal/rdb/rdb.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e28b9ba..9108c10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- `Latency` field is added to `QueueInfo`. - `EnqueueContext` method is added to `Client`. ### Fixed diff --git a/internal/rdb/rdb.go b/internal/rdb/rdb.go index c12b38b..4152618 100644 --- a/internal/rdb/rdb.go +++ b/internal/rdb/rdb.go @@ -165,7 +165,7 @@ redis.call("HSET", KEYS[2], "state", "pending", "timeout", ARGV[4], "deadline", ARGV[5], - "pending_since", ARGV[6], + "pending_since", ARGV[6], "unique_key", KEYS[1]) redis.call("LPUSH", KEYS[3], ARGV[1]) return 1