From 5ee1629c79d05b8c770717a386cfb0b52da22dcb Mon Sep 17 00:00:00 2001 From: simon987 Date: Sun, 28 Mar 2021 09:53:16 -0400 Subject: [PATCH] oops --- hexlib/env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hexlib/env.py b/hexlib/env.py index b4fef03..2d4780a 100644 --- a/hexlib/env.py +++ b/hexlib/env.py @@ -32,7 +32,7 @@ def redis_publish(rdb, item, item_project, item_type, item_subproject=None, ite rdb.publish(routing_key, item) for arc_list in ARC_LISTS: routing_key = f"{arc_list}.{item_source}.{item_type}.{item_category}" - rdb.publish(routing_key, item) + rdb.lpush(routing_key, item) def get_web():