Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d966e911 authored by Mike Yu's avatar Mike Yu Committed by Automerger Merge Worker
Browse files

Merge "Downgrade DoT connection error message to Warning" am: 3706ed75

Original change: https://android-review.googlesource.com/c/platform/packages/modules/DnsResolver/+/1667225

Change-Id: I9d4fafad329491c91a84c79a31de0a47755726ad
parents 429b28bc 3706ed75
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ Status DnsTlsSocket::tcpConnect() {
                sizeof(mServer.ss)) != 0 &&
            errno != EINPROGRESS) {
        const int err = errno;
        PLOG(ERROR) << "Socket failed to connect";
        PLOG(WARNING) << "Socket failed to connect";
        mSslFd.reset();
        return Status(err);
    }