Skip to content

Commit 96a3d71

Browse files
committed
polish
1 parent 71d1717 commit 96a3d71

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

splitio/engine/impressions/adapters.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ async def record_unique_keys(self, uniques):
9090

9191

9292
class RedisSenderAdapter(ImpressionsSenderAdapter):
93-
"""In Memory Impressions Sender Adapter class."""
93+
"""Redis Impressions Sender Adapter class."""
9494

9595
def __init__(self, redis_client):
9696
"""
97-
Initialize In memory sender adapter instance
97+
Initialize Redis sender adapter instance
9898
9999
:param telemtry_http_client: instance of telemetry http api
100100
:type telemtry_http_client: splitio.api.telemetry.TelemetryAPI
@@ -155,11 +155,11 @@ def _expire_keys(self, queue_key, key_default_ttl, total_keys, inserted):
155155

156156

157157
class RedisSenderAdapterAsync(ImpressionsSenderAdapter):
158-
"""In Memory Impressions Sender Adapter async class."""
158+
"""In Redis Impressions Sender Adapter async class."""
159159

160160
def __init__(self, redis_client):
161161
"""
162-
Initialize In memory sender adapter instance
162+
Initialize Redis sender adapter instance
163163
164164
:param telemtry_http_client: instance of telemetry http api
165165
:type telemtry_http_client: splitio.api.telemetry.TelemetryAPI
@@ -220,7 +220,7 @@ async def _expire_keys(self, queue_key, key_default_ttl, total_keys, inserted):
220220

221221

222222
class PluggableSenderAdapter(ImpressionsSenderAdapter):
223-
"""In Memory Impressions Sender Adapter class."""
223+
"""Pluggable Impressions Sender Adapter class."""
224224

225225
def __init__(self, adapter_client, prefix=None):
226226
"""

0 commit comments

Comments
 (0)