ahhh
This commit is contained in:
parent
99ccdbef46
commit
2038e84654
|
@ -18,17 +18,16 @@ import redis
|
||||||
pool = redis.ConnectionPool(host='localhost', port=6379, db=0)
|
pool = redis.ConnectionPool(host='localhost', port=6379, db=0)
|
||||||
r = redis.Redis(connection_pool=pool)
|
r = redis.Redis(connection_pool=pool)
|
||||||
|
|
||||||
|
def generate_output():
|
||||||
pubsub = r.pubsub()
|
pubsub = r.pubsub()
|
||||||
pubsub.subscribe('console')
|
pubsub.subscribe('console')
|
||||||
|
|
||||||
def generate_output():
|
|
||||||
try :
|
try :
|
||||||
for message in pubsub.listen():
|
for message in pubsub.listen():
|
||||||
if message['type'] == 'message':
|
if message['type'] == 'message':
|
||||||
print(message)
|
print(message)
|
||||||
yield f"data: {message['data'].decode()}\n\n"
|
yield f"data: {message['data'].decode()}\n\n"
|
||||||
except :
|
except Exception as e:
|
||||||
print("ya eu une erreur sad")
|
print(f"ya eu une erreur sad {e}")
|
||||||
|
|
||||||
# the end
|
# the end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue