Fix a bunch of linter warnings

address: ADd missing error check for Split call

check/command, endpoint/smtp: Silence errcheck warnings, errors are
ignored intentionally here.

modify/dkim: Remove unnecessary 'return'

target/smtp_downstream: Log QUIT error
This commit is contained in:
fox.cpp 2019-12-02 23:49:19 +03:00
parent 42ca9042ee
commit af3e295424
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
6 changed files with 11 additions and 7 deletions

View file

@ -382,7 +382,7 @@ func TestQueueDelivery_MultipleAttempts(t *testing.T) {
// tester1 is failed permanently, should not be retried.
// tester2 is failed temporary, should be retried.
msg = readMsgChanTimeout(t, dt.aborted, 5*time.Second)
readMsgChanTimeout(t, dt.aborted, 5*time.Second)
// Third attempt... tester2 delivered.
msg = readMsgChanTimeout(t, dt.committed, 5*time.Second)