1
0

Update module lib/pq to v1.4.0 (#428)

Update module lib/pq to v1.4.0

Reviewed-on: https://kolaente.dev/vikunja/api/pulls/428
This commit is contained in:
renovate
2020-04-22 10:16:38 +00:00
committed by konrad
parent dece744685
commit f0792cfb0b
11 changed files with 104 additions and 111 deletions

6
vendor/github.com/lib/pq/notify.go generated vendored
View File

@ -174,8 +174,12 @@ func (l *ListenerConn) listenerConnLoop() (err error) {
}
l.replyChan <- message{t, nil}
case 'N', 'S':
case 'S':
// ignore
case 'N':
if n := l.cn.noticeHandler; n != nil {
n(parseError(r))
}
default:
return fmt.Errorf("unexpected message %q from server in listenerConnLoop", t)
}