ianw commented on issue #319: URL: https://github.com/apache/mina-sshd/issues/319#issuecomment-1429057967
After *quite* a bit of head scratching over why none of the messages in https://gerrit-review.googlesource.com/c/gerrit/+/357694 were appearing, I believe that the original Gerrit change https://gerrit-review.googlesource.com/c/gerrit/+/238384 didn't also register the unknown-reference handler as a regular channel-listener. This is explained in the docs @ https://github.com/apache/mina-sshd/blob/master/docs/event-listeners.md#unknownchannelreferencehandler I have prepared a gerrit change that fixes this with https://gerrit-review.googlesource.com/c/gerrit/+/358314 I think this explains the `null` in `SshChannelNotFoundException: Received SSH_MSG_CHANNEL_WINDOW_ADJUST on unassigned channel 0 (last assigned=null)`. The `channelInitialized` callback was never made, and so the last-assigned value for the the channel was never set. ISTM the result of this is we were probably really just seeing the original issue, just with a different log message? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
