-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix consumer rendering in info command (#87)
* fix consumer in info command * update dependencies
- Loading branch information
1 parent
94435a7
commit 3d9dfce
Showing
9 changed files
with
49 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.21-alpine as builder | ||
FROM golang:1.22-alpine as builder | ||
ARG version | ||
|
||
WORKDIR /go/src/app | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,7 +73,7 @@ func TestCmdInfoByExchangeInTextFormatProducesExpectedTree(t *testing.T) { | |
│ │ │ └─ another_consumer w/ faulty channel (consumer prefetch=0, ack_req=no, active=no, status=) | ||
│ │ └─ '172.17.0.1:40874 -> 172.17.0.2:5672' (connection [email protected]:5672, state='running', client='https://github.com/streadway/amqp', ver='β', peer='172.17.0.1:40874') | ||
│ │ └─ '172.17.0.1:40874 -> 172.17.0.2:5672 (1)' (channel prefetch=0, state=running, unacked=0, confirms=no) | ||
│ │ └─ another_consumer w/ faulty channel (consumer prefetch=0, ack_req=no, active=no, status=) | ||
│ │ └─ some_consumer (consumer prefetch=0, ack_req=no, active=no, status=) | ||
│ └─ direct-q2 (queue(classic), key='direct-q2', running, [D]) | ||
├─ test-fanout (exchange(fanout), [D]) | ||
│ ├─ fanout-q1 (queue(classic), idle since 2017-05-25 19:14:32, [D]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters