mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #37084 from nwneisen/update-ring-buffer-documents
Update documentation for RingLogger's ring buffer
This commit is contained in:
commit
59698778fe
2 changed files with 2 additions and 2 deletions
|
@ -150,7 +150,7 @@ func newRing(maxBytes int64) *messageRing {
|
|||
}
|
||||
|
||||
// Enqueue adds a message to the buffer queue
|
||||
// If the message is too big for the buffer it drops the oldest messages to make room
|
||||
// If the message is too big for the buffer it drops the new message.
|
||||
// If there are no messages in the queue and the message is still too big, it adds the message anyway.
|
||||
func (r *messageRing) Enqueue(m *Message) error {
|
||||
mSize := int64(len(m.Line))
|
||||
|
|
|
@ -58,7 +58,7 @@ func TestRingCap(t *testing.T) {
|
|||
}
|
||||
}
|
||||
|
||||
// should have messages in the queue for "5" to "10"
|
||||
// should have messages in the queue for "0" to "4"
|
||||
for i := 0; i < 5; i++ {
|
||||
m, err := r.Dequeue()
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue