Skip to content

Commit

Permalink
Fixed line length
Browse files Browse the repository at this point in the history
  • Loading branch information
milux committed Nov 8, 2023
1 parent f6a07ce commit 4d07baf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ class TLSServerThread<CC : Idscp2Connection> internal constructor(
connectionFuture
)
} catch (e: Exception) {
running = false // set running false before tlsVerificationLatch is decremented, this will cleanup the server thread
// set running false before tlsVerificationLatch is decremented to clean up the server thread
running = false
connectionFuture.completeExceptionally(
Idscp2Exception("TLS session was not valid", e)
)
Expand Down

0 comments on commit 4d07baf

Please sign in to comment.