rahnas / pagavcs

Automatically exported from code.google.com/p/pagavcs
0 stars 0 forks source link

SSH connection is slow to recreate after idle #170

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
these new svnkit 1.8.7 properties might help:

(SshHost:)
    private static final int CONNECTION_INACTIVITY_TIMEOUT = Integer.parseInt(System.getProperty("svnkit.ssh.connection.inactivity.timeout.secs", "600")) * 1000; // 10 minutes
    private static final int MAX_CONCURRENT_OPENERS = Integer.parseInt(System.getProperty("svnkit.ssh.max.concurrent.connection.openers", "3"));
    private static final int MAX_SESSIONS_PER_CONNECTION = Integer.parseInt(System.getProperty("svnkit.ssh.max.sessions.per.connection", "8"));

Original issue reported on code.google.com by gabor.pa...@gmail.com on 16 Jan 2015 at 6:01