We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efbb769 commit cd02d61Copy full SHA for cd02d61
1 file changed
src/messaging/Message.ts
@@ -211,8 +211,10 @@ export namespace Message {
211
parser: stateParser
212
}
213
214
- export const proxifyRequest: Request<string> = {
+ export const proxifyRequest: Request<Ack> = {
215
type: Interrupt.proxify,
216
- parser: identityParser
+ parser: (line: string) => {
217
+ return ackParser(line, 'PROXIED');
218
+ }
219
};
220
0 commit comments