You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered an issue while using the JSch SFTP functionality. After running my program for an extended period, I received the following error:
Upon examining the JSch source code, it appears to be a bug. The kex_start_time variable in Session.java should be volatile. Additionally, on line 846 of Session.java, the assignment of kex_start_time should occur before the assignment of in_kex to avoid a timeout misjudgment in the Session.write function.
The text was updated successfully, but these errors were encountered:
I encountered an issue while using the JSch SFTP functionality. After running my program for an extended period, I received the following error:
Upon examining the JSch source code, it appears to be a bug. The kex_start_time variable in Session.java should be volatile. Additionally, on line 846 of Session.java, the assignment of kex_start_time should occur before the assignment of in_kex to avoid a timeout misjudgment in the Session.write function.
The text was updated successfully, but these errors were encountered: