File tree 1 file changed +4
-3
lines changed
src/main/java/io/fusionauth/http/server
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2022-2023 , FusionAuth, All Rights Reserved
2
+ * Copyright (c) 2022-2024 , FusionAuth, All Rights Reserved
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
15
15
*/
16
16
package io .fusionauth .http .server ;
17
17
18
+ import javax .net .ssl .SSLHandshakeException ;
18
19
import java .io .Closeable ;
19
20
import java .io .IOException ;
20
21
import java .net .InetSocketAddress ;
@@ -170,8 +171,8 @@ public void run() {
170
171
}
171
172
172
173
cancelAndCloseKey (key );
173
- } catch (ClientAbortException e ) {
174
- // A client abort exception is common and should not be error logged.
174
+ } catch (ClientAbortException | SSLHandshakeException e ) {
175
+ // A client abort exception or SSLHandshakeException are common and should not be error logged.
175
176
logger .debug ("A client related exception was thrown during processing" , e );
176
177
cancelAndCloseKey (key );
177
178
} catch (Throwable t ) {
You can’t perform that action at this time.
0 commit comments