mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 20:23:43 +08:00
feat(worldpay): migrate to v7 (#6109)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -312,8 +312,12 @@ where
|
||||
Op::Find => MerchantStorageScheme::RedisKv,
|
||||
Op::Update(_, _, Some("postgres_only")) => MerchantStorageScheme::PostgresOnly,
|
||||
Op::Update(partition_key, field, Some(_updated_by)) => {
|
||||
match kv_wrapper::<D, _, _>(store, KvOperation::<D>::HGet(field), partition_key)
|
||||
.await
|
||||
match Box::pin(kv_wrapper::<D, _, _>(
|
||||
store,
|
||||
KvOperation::<D>::HGet(field),
|
||||
partition_key,
|
||||
))
|
||||
.await
|
||||
{
|
||||
Ok(_) => {
|
||||
metrics::KV_SOFT_KILL_ACTIVE_UPDATE.add(&metrics::CONTEXT, 1, &[]);
|
||||
|
||||
Reference in New Issue
Block a user