mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
Rename dispatcher to "msgpipeline"
New name more precisely describes what it is doing now. It was initally meant to be more generic and usable for other purposes, but I don't think we will need that flexibility.
This commit is contained in:
parent
9d3b7f15a4
commit
028d8b914c
18 changed files with 311 additions and 311 deletions
|
@ -461,7 +461,7 @@ func TestQueueDelivery_SerializationRoundtrip(t *testing.T) {
|
|||
defer cleanQueue(t, q)
|
||||
|
||||
// This is the most tricky test because it is racy and I have no idea what can be done to avoid it.
|
||||
// It relies on us calling Close before queue dispatcher decides to retry delivery.
|
||||
// It relies on us calling Close before queue msgpipeline decides to retry delivery.
|
||||
// Hence retry delay is increased from 0ms used in other tests to make it reliable.
|
||||
q.initialRetryTime = 1 * time.Second
|
||||
|
||||
|
@ -512,7 +512,7 @@ func TestQueueDelivery_DeserlizationCleanUp(t *testing.T) {
|
|||
defer cleanQueue(t, q)
|
||||
|
||||
// This is the most tricky test because it is racy and I have no idea what can be done to avoid it.
|
||||
// It relies on us calling Close before queue dispatcher decides to retry delivery.
|
||||
// It relies on us calling Close before queue msgpipeline decides to retry delivery.
|
||||
// Hence retry delay is increased from 0ms used in other tests to make it reliable.
|
||||
q.initialRetryTime = 1 * time.Second
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue