plugin/forward: remove lenc and lencOut channels (#1726)

Remove these 2 channels, as they were only used in testing and
complicate things if we want to do a clean stop()

Less is more.
This commit is contained in:
Miek Gieben 2018-04-24 16:10:31 +01:00 committed by GitHub
parent b9ddb061e1
commit d49194623f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 53 deletions

View file

@ -30,28 +30,4 @@ func TestPersistent(t *testing.T) {
tr.Yield(c1)
tr.Yield(c2)
tr.Yield(c3)
if x := tr.Len(); x != 3 {
t.Errorf("Expected cache size to be 3, got %d", x)
}
c4, cache4, _ := tr.Dial("udp")
if x := tr.Len(); x != 2 {
t.Errorf("Expected cache size to be 2, got %d", x)
}
c5, cache5, _ := tr.Dial("udp")
if x := tr.Len(); x != 1 {
t.Errorf("Expected cache size to be 1, got %d", x)
}
if cache4 == false || cache5 == false {
t.Errorf("Expected cached connection")
}
tr.Yield(c4)
tr.Yield(c5)
if x := tr.Len(); x != 3 {
t.Errorf("Expected cache size to be 3, got %d", x)
}
}