I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 6ed329db authored by zzz's avatar zzz
Browse files

I2CP: Reduce log level of error when session closed

while signing leaseset (ticket #1606)
parent 2c65173b
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ package net.i2p.client.impl; ...@@ -9,6 +9,7 @@ package net.i2p.client.impl;
* *
*/ */
import java.io.EOFException;
import java.security.GeneralSecurityException; import java.security.GeneralSecurityException;
import java.util.Map; import java.util.Map;
import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentHashMap;
...@@ -185,7 +186,16 @@ class RequestLeaseSetMessageHandler extends HandlerImpl { ...@@ -185,7 +186,16 @@ class RequestLeaseSetMessageHandler extends HandlerImpl {
} catch (DataFormatException dfe) { } catch (DataFormatException dfe) {
session.propogateError("Error signing the leaseSet", dfe); session.propogateError("Error signing the leaseSet", dfe);
} catch (I2PSessionException ise) { } catch (I2PSessionException ise) {
session.propogateError("Error sending the signed leaseSet", ise); if (session.isClosed()) {
// race, closed while signing leaseset
// EOFExceptions are logged at WARN level (see I2PSessionImpl.propogateError())
// so the user won't see this
EOFException eof = new EOFException("Session closed while signing leaseset");
eof.initCause(ise);
session.propogateError("Session closed while signing leaseset", eof);
} else {
session.propogateError("Error sending the signed leaseSet", ise);
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment