We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69c96ea commit a29ceb8Copy full SHA for a29ceb8
Tool/Sources/GitHubCopilotService/LanguageServer/GitHubCopilotService.swift
@@ -187,8 +187,8 @@ public class GitHubCopilotBaseService {
187
let localServer = CopilotLocalProcessServer(executionParameters: executionParams)
188
189
localServer.logMessages = UserDefaults.shared.value(for: \.gitHubCopilotVerboseLog)
190
- localServer.notificationHandler = { _, respond in
191
- respond(.timeout)
+ localServer.notificationHandler = { notification, respond in
+ respond(.handlerUnavailable(notification.method.rawValue))
192
}
193
let server = InitializingServer(server: localServer)
194
0 commit comments