Skip to content

Commit

Permalink
Fix an issue related to consumer's queue not populated
Browse files Browse the repository at this point in the history
  • Loading branch information
alinz committed May 20, 2024
1 parent a3fbef9 commit 57d6f34
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
test.db
test.db-wal
test.db-shm
4 changes: 2 additions & 2 deletions server/storage/schema/0002-triggers.sql
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,9 @@ WHERE
id,
MIN(acked_counts)
FROM
consumers
consumers AS internal_consumers
WHERE
queue_name = consumers.queue_name
internal_consumers.queue_name = consumers.queue_name
LIMIT
1
)
Expand Down

0 comments on commit 57d6f34

Please sign in to comment.