From 8d2aa443e090554aa5685a77292fbf320100afc8 Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Mon, 8 Sep 2025 23:23:18 -0700 Subject: [PATCH] Complete. --- Sources/SecretAgent/XPCInputParser.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Sources/SecretAgent/XPCInputParser.swift b/Sources/SecretAgent/XPCInputParser.swift index c0317aa..3253bd9 100644 --- a/Sources/SecretAgent/XPCInputParser.swift +++ b/Sources/SecretAgent/XPCInputParser.swift @@ -16,4 +16,8 @@ public final class XPCAgentInputParser: SSHAgentInputParserProtocol { try await session.send(data) } + deinit { + session.complete() + } + }