fix: handle session and confirm flow discrepancy in surcharge details (#2696)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Hrithikesh
2023-11-14 16:11:38 +05:30
committed by GitHub
parent 856c7af77e
commit cafea45982
20 changed files with 477 additions and 77 deletions

View File

@ -111,7 +111,9 @@ where
KvOperation::Hset(value, sql) => {
logger::debug!(kv_operation= %operation, value = ?value);
redis_conn.set_hash_fields(key, value, Some(ttl)).await?;
redis_conn
.set_hash_fields(key, value, Some(ttl.into()))
.await?;
store
.push_to_drainer_stream::<S>(sql, partition_key)