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

Commit 21d42c3b 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 am: d966e911

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

Change-Id: I6fcc52088836d7bd605a42a45bf25c4cad4b2945
parents 3e2cf286 d966e911
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);
    }