forked from platypush/platypush
Enforced cast to string for any object posted to the Redis bus
This commit is contained in:
parent
68dcdf8ccd
commit
c2be1cf6e8
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class RedisPlugin(Plugin):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
redis = Redis(*args, **kwargs)
|
redis = Redis(*args, **kwargs)
|
||||||
redis.rpush(queue, msg)
|
redis.rpush(queue, str(msg))
|
||||||
|
|
||||||
@action
|
@action
|
||||||
def mget(self, keys, *args):
|
def mget(self, keys, *args):
|
||||||
|
|
Loading…
Reference in a new issue