diff --git a/TunnelKit/Sources/Protocols/OpenVPN/OpenVPNSession.swift b/TunnelKit/Sources/Protocols/OpenVPN/OpenVPNSession.swift index 6f53b89..370a9d8 100644 --- a/TunnelKit/Sources/Protocols/OpenVPN/OpenVPNSession.swift +++ b/TunnelKit/Sources/Protocols/OpenVPN/OpenVPNSession.swift @@ -470,8 +470,8 @@ public class OpenVPNSession: Session { if (code == .dataV1) || (code == .dataV2) { let key = firstByte & 0b111 guard let _ = keys[key] else { - log.error("Key with id \(key) not found") - deferStop(.shutdown, OpenVPNError.badKey) + log.warning("Key with id \(key) not found") +// deferStop(.shutdown, OpenVPNError.badKey) return }