mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
fix(multitenancy): remove tenant id from redis stream key of kafkaStore (#4916)
This commit is contained in:
@ -1109,9 +1109,8 @@ impl QueueInterface for KafkaStore {
|
||||
entry_id: &RedisEntryId,
|
||||
fields: Vec<(&str, String)>,
|
||||
) -> CustomResult<(), RedisError> {
|
||||
let stream_name = format!("{}_{}", &self.tenant_id.0, stream);
|
||||
self.diesel_store
|
||||
.stream_append_entry(&stream_name, entry_id, fields)
|
||||
.stream_append_entry(stream, entry_id, fields)
|
||||
.await
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user